From 92791b972c4a5a9b82386536cdfc039e854daee0 Mon Sep 17 00:00:00 2001 From: Shreya Bhandare Date: Thu, 13 Dec 2018 22:59:10 +0530 Subject: EVP_PKEY_size declared to take a const parameter CLA: trivial Function EVP_PKEY_size has been modified to take a const parameter Reviewed-by: Richard Levitte Reviewed-by: Kurt Roeckx Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/7892) (cherry picked from commit 47ec2367ebf6082abb103e66e609feb5c128d358) --- include/openssl/evp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/openssl/evp.h b/include/openssl/evp.h index 8c8051993f..cfc33f6a8c 100644 --- a/include/openssl/evp.h +++ b/include/openssl/evp.h @@ -994,7 +994,7 @@ int EVP_PKEY_id(const EVP_PKEY *pkey); int EVP_PKEY_base_id(const EVP_PKEY *pkey); int EVP_PKEY_bits(const EVP_PKEY *pkey); int EVP_PKEY_security_bits(const EVP_PKEY *pkey); -int EVP_PKEY_size(EVP_PKEY *pkey); +int EVP_PKEY_size(const EVP_PKEY *pkey); int EVP_PKEY_set_type(EVP_PKEY *pkey, int type); int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len); int EVP_PKEY_set_alias_type(EVP_PKEY *pkey, int type); -- cgit v1.2.3