summaryrefslogtreecommitdiffstats
path: root/crypto/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-03-28 17:22:20 +0000
committerMatt Caswell <matt@openssl.org>2019-04-03 15:50:13 +0100
commit7556b9df597ce43c1c31b294512d5146560f37c6 (patch)
treea6d085f692b1906b28d47df2ab5a4f7f07c936f7 /crypto/include
parent5a2bd6bc66a902ed7aa681e93f0e339c0441e228 (diff)
Support EVP_MD_block_size() with providers
Fixes #8565 Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8604)
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/evp_int.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/include/internal/evp_int.h b/crypto/include/internal/evp_int.h
index ab8ce00e47..c932898139 100644
--- a/crypto/include/internal/evp_int.h
+++ b/crypto/include/internal/evp_int.h
@@ -204,6 +204,7 @@ struct evp_md_st {
OSSL_OP_digest_freectx_fn *freectx;
OSSL_OP_digest_dupctx_fn *dupctx;
OSSL_OP_digest_size_fn *size;
+ OSSL_OP_digest_block_size_fn *dblock_size;
} /* EVP_MD */ ;