summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* small changes prior to releasegnutls_3_2_5Nikos Mavrogiannopoulos2013-10-239-9/+26
|
* corrected ciphersuite numbers in prioritiesNikos Mavrogiannopoulos2013-10-231-3/+3
|
* corrected libdane docNikos Mavrogiannopoulos2013-10-231-2/+2
|
* Added description for umacNikos Mavrogiannopoulos2013-10-231-0/+2
|
* bumped versionNikos Mavrogiannopoulos2013-10-231-3/+3
|
* Added underscore to camellia gcm context.Nikos Mavrogiannopoulos2013-10-223-15/+15
|
* doc updateNikos Mavrogiannopoulos2013-10-221-0/+3
|
* rearrangementNikos Mavrogiannopoulos2013-10-221-4/+4
|
* Removed the _WITH_ from ciphersuites names.Nikos Mavrogiannopoulos2013-10-221-62/+62
|
* Added Camellia with GCMNikos Mavrogiannopoulos2013-10-227-13/+269
|
* Added the PSK HMAC-based Camellia ciphersuites from RFC6367.Nikos Mavrogiannopoulos2013-10-211-1/+41
|
* Added HMAC-based Camellia ciphersuites from RFC6367.Nikos Mavrogiannopoulos2013-10-211-0/+23
|
* Added Camellia ciphersuites from RFC5932.Nikos Mavrogiannopoulos2013-10-211-0/+51
| | | | | | | Added GNUTLS_RSA_CAMELLIA_128_CBC_SHA256, GNUTLS_DHE_DSS_CAMELLIA_128_CBC_SHA256, GNUTLS_DHE_RSA_CAMELLIA_128_CBC_SHA256, GNUTLS_DH_ANON_CAMELLIA_128_CBC_SHA256, GNUTLS_RSA_CAMELLIA_256_CBC_SHA256, GNUTLS_DHE_DSS_CAMELLIA_256_CBC_SHA256, GNUTLS_DHE_RSA_CAMELLIA_256_CBC_SHA256, GNUTLS_DH_ANON_CAMELLIA_256_CBC_SHA256.
* Added more ciphersuites from RFC5487.Nikos Mavrogiannopoulos2013-10-211-0/+53
| | | | | | | | Added GNUTLS_PSK_AES_256_CBC_SHA384, GNUTLS_PSK_NULL_SHA384, GNUTLS_DHE_PSK_AES_256_CBC_SHA384, GNUTLS_DHE_PSK_NULL_SHA384, GNUTLS_RSA_PSK_AES_128_GCM_SHA256, GNUTLS_RSA_PSK_AES_256_GCM_SHA384, GNUTLS_RSA_PSK_AES_128_CBC_SHA256, GNUTLS_RSA_PSK_AES_256_CBC_SHA384, GNUTLS_RSA_PSK_NULL_SHA256, GNUTLS_RSA_PSK_NULL_SHA384.
* Added new ciphersuites from RFC5288.Nikos Mavrogiannopoulos2013-10-211-0/+24
| | | | | Added GNUTLS_RSA_AES_256_GCM_SHA384, GNUTLS_DHE_RSA_AES_256_GCM_SHA384, GNUTLS_DHE_DSS_AES_256_GCM_SHA384 and GNUTLS_DH_ANON_AES_256_GCM_SHA384.
* doc updateNikos Mavrogiannopoulos2013-10-211-0/+3
|
* corrected type of path_lenNikos Mavrogiannopoulos2013-10-211-1/+1
|
* exported symbolsNikos Mavrogiannopoulos2013-10-211-0/+2
|
* small fixesNikos Mavrogiannopoulos2013-10-212-2/+3
|
* Adding dane_verify_crt_raw to allow direct verification of a certificate ↵Christian Grothoff2013-10-212-22/+77
| | | | | | chain against a dane_query_t (for example, as provided by the new dane_raw_tlsa). Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* bumped dane library versionNikos Mavrogiannopoulos2013-10-211-3/+3
|
* doc updateNikos Mavrogiannopoulos2013-10-211-0/+1
|
* Adding dane_raw_tlsa to allow initialization of dane_query_t from DANE ↵Christian Grothoff2013-10-212-73/+115
| | | | | | records based on external DNS resolutions. Also fixing a buffer overflow. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* Normalize capitalization from "Public Key Id" to "Public Key ID"Daniel Kahn Gillmor2013-10-2120-29/+29
| | | | | | | | | | | The GnuTLS codebase produced the string "Public Key Id" in some places (e.g. in the output of "certtool -i"), and "Public Key ID" in other places (e.g. in the output of "certtool -k"). This changeset standardizes on "Public Key ID", making the output consistent across uses. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* Added gnutls_certificate_get_crt_raw() to return the raw certificate as ↵Nikos Mavrogiannopoulos2013-10-193-1/+40
| | | | present in the credentials structure.
* corrected length calculationNikos Mavrogiannopoulos2013-10-102-2/+2
|
* guile: Fix possible stack overflows.Ludovic Courtès2013-10-092-3/+3
|
* Corrected possible buffer overruns in included programs and examples.Nikos Mavrogiannopoulos2013-10-094-9/+16
| | | | | Corrected possible buffer overruns in included programs and examples. Reported by Pedro Ribeiro <pedrib@gmail.com>.
* corrected typoNikos Mavrogiannopoulos2013-10-051-1/+1
|
* doc updateNikos Mavrogiannopoulos2013-10-041-0/+2
|
* autogen'ed files updateNikos Mavrogiannopoulos2013-10-043-603/+182
|
* Fix srptool issuesAttila Molnar2013-10-041-2/+1
| | | | | | | | | | | | | | From dc3a0d6d8d4aa98ccb19641e6668a03d77f381f1 Mon Sep 17 00:00:00 2001 From: Attila Molnar <attilamolnar@hush.com> Date: Tue, 1 Oct 2013 13:42:10 +0200 Subject: [PATCH 2/2] srptool: Fix segfault when an invalid group parameter index is given If no group with the given index was found in the password conf file srptool crashed instead of reporting the error because the return value of fgets() wasn't validated before it was passed to atoi(). Signed-off-by: Attila Molnar <attilamolnar@hush.com>
* Fix srptool issuesAttila Molnar2013-10-042-1/+3
| | | | | | | | | | From 1fac0e5352e88addb8bf57dcac126918f19d7303 Mon Sep 17 00:00:00 2001 From: Attila Molnar <attilamolnar@hush.com> Date: Tue, 1 Oct 2013 13:40:01 +0200 Subject: [PATCH 1/2] srptool: Fix inability to add users to tpasswd and broken -i switch Signed-off-by: Attila Molnar <attilamolnar@hush.com>
* doc updateNikos Mavrogiannopoulos2013-10-044-5/+5
|
* doc updateNikos Mavrogiannopoulos2013-10-041-0/+3
|
* autogen'ed files updateNikos Mavrogiannopoulos2013-10-043-1147/+523
|
* support inline command infrastructure in gnutls-cliRaj Raman2013-10-043-76/+393
| | | | Signed-off-by: Raj Raman <rajramanca@gmail.com>
* avoid the usage of error()Nikos Mavrogiannopoulos2013-10-032-28/+100
|
* bumped versionNikos Mavrogiannopoulos2013-10-032-2/+2
|
* include config.h in tpm.cNikos Mavrogiannopoulos2013-10-021-0/+1
|
* updatedNikos Mavrogiannopoulos2013-10-011-0/+2
|
* Sync with TP.Nikos Mavrogiannopoulos2013-10-011-361/+490
|
* doc updateNikos Mavrogiannopoulos2013-09-301-0/+2
|
* define subgroup bits for the weak and export parameters, to allow DH group ↵Nikos Mavrogiannopoulos2013-09-301-2/+2
| | | | generation.
* document the version macrosNikos Mavrogiannopoulos2013-09-301-0/+10
|
* doc updateNikos Mavrogiannopoulos2013-09-301-9/+12
|
* verbose is everywhere unsignedNikos Mavrogiannopoulos2013-09-301-1/+1
|
* doc updateNikos Mavrogiannopoulos2013-09-231-0/+8
|
* removed limitation as this has been resolvedNikos Mavrogiannopoulos2013-09-171-2/+0
|
* doc updateNikos Mavrogiannopoulos2013-09-172-4/+8
|