aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_pkey_rsa.c
diff options
context:
space:
mode:
authorrhe <rhe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-19 05:31:28 +0000
committerrhe <rhe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-19 05:31:28 +0000
commite85b259e47f85ae99f406b36743fc73434b54964 (patch)
treed1dace073e93cb893796fb440a050fbf3e5de1ba /ext/openssl/ossl_pkey_rsa.c
parentc82488b81d87f25663c9eaf4fae493d6bd2432ce (diff)
downloadruby-e85b259e47f85ae99f406b36743fc73434b54964.tar.gz
openssl: add 'const's required in OpenSSL master
* ext/openssl/ossl_pkey.h, ext/openssl/ossl_pkey_dh.c, ext/openssl/ossl_pkey_dsa.c, ext/openssl/ossl_pkey_rsa.c: A few days ago, OpenSSL changed {DH,DSA,RSA}_get0_*() to take const BIGNUM **. https://git.openssl.org/gitweb/?p=openssl.git;a=commit;h=fd809cfdbd6e32b6b67b68c59f6d55fbed7a9327 [ruby-core:75225] [Feature #12324] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_pkey_rsa.c')
-rw-r--r--ext/openssl/ossl_pkey_rsa.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/openssl/ossl_pkey_rsa.c b/ext/openssl/ossl_pkey_rsa.c
index 1ee45d0f17..60fa146b16 100644
--- a/ext/openssl/ossl_pkey_rsa.c
+++ b/ext/openssl/ossl_pkey_rsa.c
@@ -26,7 +26,7 @@
static inline int
RSA_HAS_PRIVATE(RSA *rsa)
{
- BIGNUM *p, *q;
+ const BIGNUM *p, *q;
RSA_get0_factors(rsa, &p, &q);
return p && q; /* d? why? */
@@ -398,7 +398,7 @@ static VALUE
ossl_rsa_public_encrypt(int argc, VALUE *argv, VALUE self)
{
RSA *rsa;
- BIGNUM *rsa_n;
+ const BIGNUM *rsa_n;
int buf_len, pad;
VALUE str, buffer, padding;
@@ -430,7 +430,7 @@ static VALUE
ossl_rsa_public_decrypt(int argc, VALUE *argv, VALUE self)
{
RSA *rsa;
- BIGNUM *rsa_n;
+ const BIGNUM *rsa_n;
int buf_len, pad;
VALUE str, buffer, padding;
@@ -462,7 +462,7 @@ static VALUE
ossl_rsa_private_encrypt(int argc, VALUE *argv, VALUE self)
{
RSA *rsa;
- BIGNUM *rsa_n;
+ const BIGNUM *rsa_n;
int buf_len, pad;
VALUE str, buffer, padding;
@@ -496,7 +496,7 @@ static VALUE
ossl_rsa_private_decrypt(int argc, VALUE *argv, VALUE self)
{
RSA *rsa;
- BIGNUM *rsa_n;
+ const BIGNUM *rsa_n;
int buf_len, pad;
VALUE str, buffer, padding;
@@ -534,7 +534,7 @@ ossl_rsa_get_params(VALUE self)
{
RSA *rsa;
VALUE hash;
- BIGNUM *n, *e, *d, *p, *q, *dmp1, *dmq1, *iqmp;
+ const BIGNUM *n, *e, *d, *p, *q, *dmp1, *dmq1, *iqmp;
GetRSA(self, rsa);
RSA_get0_key(rsa, &n, &e, &d);