diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-11-13 07:24:47 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-11-13 07:24:47 +0000 |
commit | 5d8a897fc424c028f86629c86dbfec00e3b67474 (patch) | |
tree | 0a16a91d1eb810f2041beef018c8288d743d9d37 /lib/x509 | |
parent | dc61d246157d89d1cd8f44224bb9424a3439fa9a (diff) | |
download | gnutls-5d8a897fc424c028f86629c86dbfec00e3b67474.tar.gz |
Added the RIPEMD ciphersuites defined in draft-ietf-tls-openpgp-keys-04.
Diffstat (limited to 'lib/x509')
-rw-r--r-- | lib/x509/common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/x509/common.c b/lib/x509/common.c index ec76e18463..557ab03c1e 100644 --- a/lib/x509/common.c +++ b/lib/x509/common.c @@ -602,7 +602,6 @@ int _gnutls_x509_export_int( ASN1_TYPE asn1_data, *output_data_size = len; if (result == ASN1_MEM_ERROR) { gnutls_assert(); - _gnutls_debug_log("Length required for der coding: %d\n", len); return GNUTLS_E_SHORT_MEMORY_BUFFER; } gnutls_assert(); @@ -626,7 +625,6 @@ int _gnutls_x509_export_int( ASN1_TYPE asn1_data, if ((result=asn1_der_coding( asn1_data, "", tmp, &len, NULL)) != ASN1_SUCCESS) { gnutls_assert(); if (result == ASN1_MEM_ERROR) { - _gnutls_debug_log("Length required for der coding: %d\n", len); *output_data_size = B64FSIZE(strlen(pem_header),len) + 1; } gnutls_afree(tmp); |