summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: ");