diff options
author | Richard Levitte <levitte@openssl.org> | 2000-11-06 23:34:17 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-11-06 23:34:17 +0100 |
commit | 29c1f0615baff7e213fd664798f5d4fc89adda26 (patch) | |
tree | 2b714450d387e4a17d8818cd6cc967c116b0581e /crypto/rsa/rsa_chk.c | |
parent | As a consequence of the BIGNUM constification, the ENGINE code needs a (diff) | |
download | openssl-29c1f0615baff7e213fd664798f5d4fc89adda26.tar.xz openssl-29c1f0615baff7e213fd664798f5d4fc89adda26.zip |
Constify the RSA library.
Diffstat (limited to 'crypto/rsa/rsa_chk.c')
-rw-r--r-- | crypto/rsa/rsa_chk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_chk.c b/crypto/rsa/rsa_chk.c index 91b9115798..002f2cb487 100644 --- a/crypto/rsa/rsa_chk.c +++ b/crypto/rsa/rsa_chk.c @@ -53,7 +53,7 @@ #include <openssl/rsa.h> -int RSA_check_key(RSA *key) +int RSA_check_key(const RSA *key) { BIGNUM *i, *j, *k, *l, *m; BN_CTX *ctx; |