diff options
Diffstat (limited to 'src/common/cryptohash_openssl.c')
-rw-r--r-- | src/common/cryptohash_openssl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/cryptohash_openssl.c b/src/common/cryptohash_openssl.c index 9d9f74b086c..118651c4153 100644 --- a/src/common/cryptohash_openssl.c +++ b/src/common/cryptohash_openssl.c @@ -135,6 +135,9 @@ pg_cryptohash_init(pg_cryptohash_ctx *ctx) switch (ctx->type) { + case PG_MD5: + status = EVP_DigestInit_ex(state->evpctx, EVP_md5(), NULL); + break; case PG_SHA224: status = EVP_DigestInit_ex(state->evpctx, EVP_sha224(), NULL); break; |