summaryrefslogtreecommitdiff
path: root/crypto/digest/digest.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/digest/digest.c')
-rw-r--r--crypto/digest/digest.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/digest/digest.c b/crypto/digest/digest.c
index 2bfb0fa..3897c60 100644
--- a/crypto/digest/digest.c
+++ b/crypto/digest/digest.c
@@ -267,3 +267,7 @@ void EVP_MD_CTX_clear_flags(EVP_MD_CTX *ctx, uint32_t flags) {
uint32_t EVP_MD_CTX_test_flags(const EVP_MD_CTX *ctx, uint32_t flags) {
return ctx->flags & flags;
}
+
+int EVP_add_digest(const EVP_MD *digest) {
+ return 1;
+}