summaryrefslogtreecommitdiff
path: root/doc/examples
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Documented use gnutls_priority_set2()."Nikos Mavrogiannopoulos2017-07-253-3/+3
| | | | This reverts commit b4aed16ee30f76211c13b075149bb87c012f9bf6.
* doc: use the default priorities in server exampleNikos Mavrogiannopoulos2017-07-101-2/+4
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
* Documented use gnutls_priority_set2().Nikos Mavrogiannopoulos2017-07-103-3/+3
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
* doc: simplified the default client exampleNikos Mavrogiannopoulos2017-06-161-19/+2
| | | | | | Removed optional paths. Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
* examples: made a comment that getpass() output needs to be sanitizedNikos Mavrogiannopoulos2017-05-261-0/+1
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
* doc: updated tlsproxy to latest versionNikos Mavrogiannopoulos2017-03-071-0/+0
|
* modified the gnutls_certificate_set_key* changeNikos Mavrogiannopoulos2016-10-241-1/+8
| | | | | | | | | While the change was fully backwards compatible for applications that were adding a single certificate, and applications that were checking for negative errors codes, many applications do not. As this may cause incompatibility issues with software properly utilizing the previously documented API, the change is reverted, and applications need to explicitly enable a flag (GNUTLS_CERTIFICATE_API_V2) in the credentials structure for the set_key functions to return an index.
* doc: discuss the set_known_dh_params and use it in the examplesNikos Mavrogiannopoulos2016-10-144-84/+6
|
* doc: set a default handshake timeout on example serverNikos Mavrogiannopoulos2016-10-131-0/+2
|
* several spacing fixes to keep syntax-check happyNikos Mavrogiannopoulos2016-09-111-1/+1
|
* ex-client-x509: removed unused call to gnutls_session_set_ptr()Nikos Mavrogiannopoulos2016-07-121-2/+0
|
* doc: removed OpenPGP examplesNikos Mavrogiannopoulos2016-06-042-182/+0
| | | | Relates #102
* examples: introduced basic error checking in more examplesNikos Mavrogiannopoulos2016-04-276-141/+103
|
* examples: simplified the basic client exampleNikos Mavrogiannopoulos2016-04-271-11/+10
|
* examples: introduced basic error checking in main client examplesNikos Mavrogiannopoulos2016-04-272-47/+36
|
* examples: corrected the required version of exampleNikos Mavrogiannopoulos2016-04-271-2/+2
|
* doc: added example client application utilizing the 3.1.x APIsNikos Mavrogiannopoulos2016-04-242-0/+194
|
* examples: added explicit 3.5.0 dependency in ex-client-x509Nikos Mavrogiannopoulos2016-04-241-2/+2
|
* examples: added error checks and updated verify_certificate_chain()Nikos Mavrogiannopoulos2016-04-241-24/+26
|
* doc: added tlsproxy example reference into documentationNikos Mavrogiannopoulos2016-04-142-0/+4
|
* renamed the auto-verification functionsNikos Mavrogiannopoulos2015-09-051-1/+1
| | | | The names are more consistent with the rest of the library.
* corrected typo in ex-server-anonNikos Mavrogiannopoulos2015-08-261-1/+1
|
* examples: simplify the X.509 client example by using the new verification APINikos Mavrogiannopoulos2015-08-241-70/+20
|
* doc: fixed example with DTLS timeoutsNikos Mavrogiannopoulos2015-04-301-2/+1
|
* Fix a few compiler warnings about unused variablesJiří Klimeš2015-03-281-0/+2
| | | | | | [-Wunused-variable] Signed-off-by: Jiří Klimeš <jklimes@redhat.com>
* completely separated the two gnulibs to avoid conflictsNikos Mavrogiannopoulos2014-12-231-3/+1
|
* ex-pkcs11-list.c: updated for new APINikos Mavrogiannopoulos2014-12-221-13/+9
|
* doc: use the same port for DTLS client and serverNikos Mavrogiannopoulos2014-11-071-1/+1
|
* examples: mention that gnutls_global_init() is optionalNikos Mavrogiannopoulos2014-07-0610-14/+22
|
* doc: Correct comment about ignoring certs in the SRP server exampleAttila Molnar2014-06-172-2/+8
| | | | | | | Point readers to another example for a way to validate certificates in both the SRP and the X.509 server example Signed-off-by: Attila Molnar <attilamolnar@hush.com>
* use gnutls_set_default_priority() in examples.Nikos Mavrogiannopoulos2014-05-111-1/+5
|
* link examples to GPL gnulib.gnutls_3_3_0Nikos Mavrogiannopoulos2014-04-101-0/+1
|
* Replaced gnutls_certificate_verify_peers3() with the extendable ↵Nikos Mavrogiannopoulos2014-04-092-5/+36
| | | | | | | gnutls_certificate_verify_peers(). That will allow adding new functionality to verification without the need to add new functions.
* Added gnutls_certificate_verify_peers4 which will verify in addition to ↵Nikos Mavrogiannopoulos2014-04-082-2/+6
| | | | hostname, the purpose of the end-certificate.
* The xssl experimental library was removed.Nikos Mavrogiannopoulos2014-03-103-185/+1
| | | | | While the idea of a high level library is nice, there are no resources to maintain an additional library.
* increased code disabled from disable-ocsp and disable-openpgp optionsNikos Mavrogiannopoulos2014-03-051-1/+4
|
* examples include both gnulibsNikos Mavrogiannopoulos2014-03-041-0/+2
|
* fix small leakNikos Mavrogiannopoulos2014-02-181-0/+1
|
* Verify in example that the sent nonce matches the received nonce.Nikos Mavrogiannopoulos2014-02-181-13/+23
| | | | Reported by Benny Baumann.
* do not set the SYSTEM priority string by default in examples (not yet).Nikos Mavrogiannopoulos2014-01-259-49/+9
|
* Introduced GNUTLS_DEFAULT_PRIORITY macroNikos Mavrogiannopoulos2014-01-159-43/+32
|
* use default priorities based on version number in examples, and add ↵Nikos Mavrogiannopoulos2014-01-149-18/+112
| | | | dependency on 3.1.0
* changes in SYSTEM semantics to allow appending rules to the default policy.Nikos Mavrogiannopoulos2014-01-149-9/+9
|
* doc updateNikos Mavrogiannopoulos2014-01-141-1/+1
|
* reindented codeNikos Mavrogiannopoulos2013-11-0830-3114/+3012
|
* removed warningsNikos Mavrogiannopoulos2013-10-263-2/+5
|
* corrected length calculationNikos Mavrogiannopoulos2013-10-101-1/+1
|
* Corrected possible buffer overruns in included programs and examples.Nikos Mavrogiannopoulos2013-10-091-1/+1
| | | | | Corrected possible buffer overruns in included programs and examples. Reported by Pedro Ribeiro <pedrib@gmail.com>.
* X.509 server example updated to include OCSP staplingNikos Mavrogiannopoulos2013-07-192-2/+14
|
* Added gnutls_session_get_desc()Nikos Mavrogiannopoulos2013-03-127-7/+35
|