summaryrefslogtreecommitdiffstats
path: root/crypto/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-07-09 07:27:27 +0200
committerRichard Levitte <levitte@openssl.org>2019-07-11 07:27:02 +0200
commit80942379c9fc66076b784cba6318ed6ca85ca3ea (patch)
treebb5748478baa03eb28d897aadbe1ffb3ceaabbbe /crypto/include
parent48ebde226d4bd66556f25d0c4b3679478890974d (diff)
Make more use of OSSL_PARAM for ciphers
A lot of the different numbers associated with ciphers are really algorithm parameters. Key length, block size, IV length, that sort of thing. Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9328)
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/evp_int.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/include/internal/evp_int.h b/crypto/include/internal/evp_int.h
index 732fad8d67..da4ae0f1fb 100644
--- a/crypto/include/internal/evp_int.h
+++ b/crypto/include/internal/evp_int.h
@@ -257,9 +257,6 @@ struct evp_cipher_st {
OSSL_OP_cipher_cipher_fn *ccipher;
OSSL_OP_cipher_freectx_fn *freectx;
OSSL_OP_cipher_dupctx_fn *dupctx;
- OSSL_OP_cipher_key_length_fn *key_length;
- OSSL_OP_cipher_iv_length_fn *iv_length;
- OSSL_OP_cipher_block_size_fn *blocksize;
OSSL_OP_cipher_get_params_fn *get_params;
OSSL_OP_cipher_ctx_get_params_fn *ctx_get_params;
OSSL_OP_cipher_ctx_set_params_fn *ctx_set_params;