aboutsummaryrefslogtreecommitdiff
path: root/demos
AgeCommit message (Collapse)AuthorFilesLines
2015-01-22Fix source where indent will not be able to copeMatt Caswell1-1/+2
Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-22Yet more commentsMatt Caswell3-4/+5
Conflicts: crypto/dsa/dsa_asn1.c crypto/pem/pem_all.c fips/dh/dh_gen.c fips/dh/fips_dh_check.c fips/dh/fips_dh_gen.c ssl/ssl_ciph.c Conflicts: ssl/d1_clnt.c Conflicts: ssl/s2_pkt.c Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-22More commentsMatt Caswell3-3/+6
Conflicts: crypto/dsa/dsa_vrf.c crypto/ec/ec2_smpl.c crypto/ec/ecp_smpl.c Conflicts: demos/bio/saccept.c ssl/d1_clnt.c Conflicts: bugs/dggccbug.c demos/tunala/cb.c Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-22Further comment changes for reformat (master)Matt Caswell2-3/+4
Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-12RT3548: Remove unsupported platformsRich Salz1-9/+1
This last one for this ticket. Removes WIN16. So long, MS_CALLBACK and MS_FAR. We won't miss you. Reviewed-by: Richard Levitte <levitte@openssl.org>
2014-12-30mark all block comments that need format preserving so thatTim Hudson2-4/+6
indent will not alter them when reformatting comments Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
2014-12-04Remove SSLv2 supportKurt Roeckx1-1/+1
The only support for SSLv2 left is receiving a SSLv2 compatible client hello. Reviewed-by: Richard Levitte <levitte@openssl.org>
2014-11-28Remove all .cvsignore filesRich Salz6-38/+0
Reviewed-by: Tim Hudson <tjh@openssl.org>
2014-09-08RT2600: Change Win line-endings to Unix.Rich Salz1-920/+920
For consistency. Reviewed-by: Bodo Moeller <bodo@openssl.org>
2014-08-21RT3142: Extra initialization in state_machineJeffrey Walton1-2/+0
Remove extra initialization calls in the sample program. Reviewed-by: Emilia Kasper <emilia@openssl.org>
2014-08-19RT2847: Don't "check" uninitialized memoryMartin Olsson1-2/+0
Don't check err variable until after it's been set. Reviewed-by: Emilia Kasper <emilia@openssl.org>
2014-08-17engine_md_copy: check for NULL after allocating to_md->HashBufferJonas Maebe1-0/+2
Signed-off-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
2014-08-09Undo a90081576c94f9f54de1755188a00ccc1760549aRich Salz1-0/+5
Undo unapproved commit that removed DJGPP and WATT32
2014-08-08Remove DJGPP (and therefore WATT32) #ifdef's.Rich Salz1-5/+0
DJGPP is no longer a supported platform. Remove all #ifdef, etc., cases that refer to it. DJGPP also #define'd WATT32, so that is now removed as well.
2014-07-22Remove demos/tunalaGeoff Thorpe19-2818/+0
This has been unmaintained for a long time. If it's still of interest to anyone, it can be obtained easily enough by reverting this commit. (It could join other demo code in some other repository, perhaps.) In any case we don't want it taking up space in the baseline source package, so <snip>. Signed-off-by: Geoff Thorpe <geoff@openssl.org>
2014-07-22Remove old unused and unmaintained demonstration code.Tim Hudson15-1008/+0
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2014-02-02New ctrl to set current certificate.Dr. Stephen Henson1-1/+18
New ctrl sets current certificate based on certain criteria. Currently two options: set the first valid certificate as current and set the next valid certificate as current. Using these an application can iterate over all certificates in an SSL_CTX or SSL structure.
2014-02-02Demo of use of errors in applications.Dr. Stephen Henson5-0/+75
2014-01-28typoDr. Stephen Henson1-1/+1
2014-01-28Fix demo comment: 0.9.9 never released.Dr. Stephen Henson2-2/+2
2013-12-18Update demo.Dr. Stephen Henson2-29/+56
2013-10-21Update demos/bio/READMEDr. Stephen Henson1-2/+3
2013-10-20Fix various typos.Dr. Stephen Henson3-20/+16
2013-10-20Modify sample accept.cnfDr. Stephen Henson1-2/+3
2013-10-20Add demo for SSL server using SSL_CONF.Dr. Stephen Henson5-0/+304
2013-09-05misspellings fixes by https://github.com/vlajos/misspell_fixerVeres Lajos4-5/+5
2013-03-18Typo.Dr. Stephen Henson1-2/+3
(cherry picked from commit 1546fb780bc11556a18d70c5fb29af4a9d5beaff)
2013-03-05typoDr. Stephen Henson1-1/+1
2013-03-05Initial CCM code.Dr. Stephen Henson1-0/+115
Simple example of CCM code use: translated from the FIPS self tests.
2013-02-26Demo code for SSL_CONF APIDr. Stephen Henson5-2/+260
Two example programs one for command line argument processing and one for configuration file processing.
2012-12-14oops, revert, committed in errorDr. Stephen Henson2-4/+1
2012-12-14apps/ocsp.cDr. Stephen Henson2-1/+4
2012-11-18remove redundant code from demoDr. Stephen Henson1-10/+1
2012-10-27typoDr. Stephen Henson1-1/+1
2012-10-16add simple AES GCM code exampleDr. Stephen Henson1-0/+114
2012-09-09update READMEDr. Stephen Henson1-4/+16
2012-09-09Extend certificate creation examples to include CRL generation and sampleDr. Stephen Henson4-7/+99
scripts running the test OCSP responder.
2012-08-31make EC test certificates usable for ECDHDr. Stephen Henson2-2/+13
2012-06-29Add certificate callback. If set this is called whenever a certificateDr. Stephen Henson1-0/+29
is required by client or server. An application can decide which certificate chain to present based on arbitrary criteria: for example supported signature algorithms. Add very simple example to s_server. This fixes many of the problems and restrictions of the existing client certificate callback: for example you can now clear existing certificates and specify the whole chain.
2012-02-09oops, revert unrelated changesDr. Stephen Henson1-4/+1
2012-02-09Modify client hello version when renegotiating to enhance interop withDr. Stephen Henson1-1/+4
some servers.
2012-01-25add example for DH certificate generationDr. Stephen Henson2-1/+44
2011-12-14Add private keys and generation scripts for test certificates in appsDr. Stephen Henson7-0/+238
directory.
2011-06-01Simple automated certificate creation demo.Dr. Stephen Henson3-0/+91
2010-01-21fix commentsDr. Stephen Henson2-4/+4
2010-01-20Update demoDr. Stephen Henson1-1/+1
2009-08-15Use SHA1 and not deprecated MD5 in demos.Dr. Stephen Henson2-2/+2
2009-05-15Functional VMS changes submitted by sms@antinode.info (Steven M. Schweda).Richard Levitte1-7/+27
Thank you\! (note: not tested for now, a few nightly builds should give indications though)
2009-04-03Merge from 1.0.0-stable branch.Dr. Stephen Henson1-1/+1
2008-11-05Update obsolete email address...Dr. Stephen Henson1-1/+1