summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-03-26 20:11:02 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-03-26 20:11:02 +0000
commite0fb5651ece78cc406c355499674088908f73699 (patch)
tree52de5d1fba2fa9956ce5188e7304af4a465bd1eb
parent0be55a2e2485e2e8f01594f59f72e9834fe258bd (diff)
downloadgnutls-e0fb5651ece78cc406c355499674088908f73699.tar.gz
*** empty log message ***
-rw-r--r--NEWS4
-rw-r--r--src/common.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index e7b55c5de6..94e69df84b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
Version 0.3.93
- Added support for RFC2630 (PKCS7) X.509 certificate sets
-- Added new function: gnutls_x509_extract_certificate_pk_algorithm()
+- Added new functions: gnutls_x509_extract_certificate_pk_algorithm(),
+ gnutls_openpgp_extract_key_pk_algorithm().
+- Several optimizations in the Handshake protocol
Version 0.3.92 (23/03/2002)
- Updated documentation
diff --git a/src/common.c b/src/common.c
index e14ddd41ee..42527949e5 100644
--- a/src/common.c
+++ b/src/common.c
@@ -115,7 +115,7 @@ void print_openpgp_info(GNUTLS_STATE state)
printf(" # PGP Key version: %d\n",
gnutls_openpgp_extract_key_version(&cert_list[0]));
- algo = gnutls_x509_extract_certificate_pk_algorithm( &cert_list[0], &bits);
+ algo = gnutls_openpgp_extract_key_pk_algorithm( &cert_list[0], &bits);
printf(" # PGP Key public key algorithm: ");