summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/a_digest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/asn1/a_digest.c')
-rw-r--r--src/lib/libcrypto/asn1/a_digest.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/libcrypto/asn1/a_digest.c b/src/lib/libcrypto/asn1/a_digest.c
index cbdeea6ac0..d00d9e22b1 100644
--- a/src/lib/libcrypto/asn1/a_digest.c
+++ b/src/lib/libcrypto/asn1/a_digest.c
@@ -87,8 +87,7 @@ int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data,
87 p=str; 87 p=str;
88 i2d(data,&p); 88 i2d(data,&p);
89 89
90 if (!EVP_Digest(str, i, md, len, type, NULL)) 90 EVP_Digest(str, i, md, len, type, NULL);
91 return 0;
92 OPENSSL_free(str); 91 OPENSSL_free(str);
93 return(1); 92 return(1);
94 } 93 }
@@ -105,8 +104,7 @@ int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type, void *asn,
105 i=ASN1_item_i2d(asn,&str, it); 104 i=ASN1_item_i2d(asn,&str, it);
106 if (!str) return(0); 105 if (!str) return(0);
107 106
108 if (!EVP_Digest(str, i, md, len, type, NULL)) 107 EVP_Digest(str, i, md, len, type, NULL);
109 return 0;
110 OPENSSL_free(str); 108 OPENSSL_free(str);
111 return(1); 109 return(1);
112 } 110 }