diff options
author | tb <> | 2018-08-24 20:22:15 +0000 |
---|---|---|
committer | tb <> | 2018-08-24 20:22:15 +0000 |
commit | a5eaaaed8fa0896775f96cf6b57259dad576fec1 (patch) | |
tree | 0581e2b3e7d7f9b09ce2e06c0e79d8c1ad83479a /src/lib/libcrypto/rsa | |
parent | 5ace4c7530c972572b51f65ce6521aa5fdded0bc (diff) | |
download | openbsd-a5eaaaed8fa0896775f96cf6b57259dad576fec1.tar.gz openbsd-a5eaaaed8fa0896775f96cf6b57259dad576fec1.tar.bz2 openbsd-a5eaaaed8fa0896775f96cf6b57259dad576fec1.zip |
Add consts to EVP_PKEY_asn1_set_private()
Requires adding a const to the priv_decode() member of
EVP_PKEY_ASN1_METHOD and adjusting all *_priv_decode()
functions. All this is already documented this way.
tested in a bulk build by sthen
ok jsing
Diffstat (limited to 'src/lib/libcrypto/rsa')
-rw-r--r-- | src/lib/libcrypto/rsa/rsa_ameth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_ameth.c b/src/lib/libcrypto/rsa/rsa_ameth.c index ec8a71b7b9..ce3e9b3509 100644 --- a/src/lib/libcrypto/rsa/rsa_ameth.c +++ b/src/lib/libcrypto/rsa/rsa_ameth.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsa_ameth.c,v 1.18 2017/01/29 17:49:23 beck Exp $ */ | 1 | /* $OpenBSD: rsa_ameth.c,v 1.19 2018/08/24 20:22:15 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -154,7 +154,7 @@ rsa_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey) | |||
154 | } | 154 | } |
155 | 155 | ||
156 | static int | 156 | static int |
157 | rsa_priv_decode(EVP_PKEY *pkey, PKCS8_PRIV_KEY_INFO *p8) | 157 | rsa_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8) |
158 | { | 158 | { |
159 | const unsigned char *p; | 159 | const unsigned char *p; |
160 | int pklen; | 160 | int pklen; |