summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorShreya Bhandare <shreya.bhandare@shorelineiot.com>2018-12-13 22:59:10 +0530
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2018-12-23 00:27:23 +0100
commit92791b972c4a5a9b82386536cdfc039e854daee0 (patch)
tree3de1a5e551fa6cdc3e29bb28233bd391b0ae7976 /include
parent7d550561e3f58c1810486d962732e9c3476487e2 (diff)
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 <levitte@openssl.org> Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/7892) (cherry picked from commit 47ec2367ebf6082abb103e66e609feb5c128d358)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/evp.h2
1 files changed, 1 insertions, 1 deletions
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);