diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-06-22 14:52:37 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-06-22 14:52:37 +0000 |
commit | ea5da3f8fd0b439a847f9dca9376d0ebc94fbb38 (patch) | |
tree | 350311b44136139d56e9365f87383c24a86e8903 /lib/gnutls_x509.h | |
parent | f2ea2f1c95bc0fafdc51ac818cc0dd9546607cf2 (diff) | |
download | gnutls-ea5da3f8fd0b439a847f9dca9376d0ebc94fbb38.tar.gz |
The TLS handshake no longer fails if the X.509 extensions in the Certificate are critical and unsupported. The unsupported critical extensions are now only catched by the verification functions.
Diffstat (limited to 'lib/gnutls_x509.h')
-rw-r--r-- | lib/gnutls_x509.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_x509.h b/lib/gnutls_x509.h index 69e149846d..105bae09ce 100644 --- a/lib/gnutls_x509.h +++ b/lib/gnutls_x509.h @@ -1,7 +1,7 @@ #include <libtasn1.h> int _gnutls_x509_cert_verify_peers(GNUTLS_STATE state); -int _gnutls_x509_cert2gnutls_cert(gnutls_cert * gCert, gnutls_datum derCert); +int _gnutls_x509_cert2gnutls_cert(gnutls_cert * gCert, gnutls_datum derCert, int noext); #define MAX_INT_DIGITS 4 void _gnutls_int2str(unsigned int k, char *data); |