2003-07-23 20:12:24 +04:00
|
|
|
/*
|
|
|
|
* 'OpenSSL for Ruby' project
|
|
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
/*
|
2015-04-20 06:55:09 +03:00
|
|
|
* This program is licensed under the same licence as Ruby.
|
2003-07-23 20:12:24 +04:00
|
|
|
* (See the file 'LICENCE'.)
|
|
|
|
*/
|
|
|
|
#include "ossl.h"
|
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
#if !defined(OPENSSL_NO_DSA)
|
|
|
|
|
2003-07-23 20:12:24 +04:00
|
|
|
#define GetPKeyDSA(obj, pkey) do { \
|
2011-03-07 11:44:45 +03:00
|
|
|
GetPKey((obj), (pkey)); \
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
if (EVP_PKEY_base_id(pkey) != EVP_PKEY_DSA) { /* PARANOIA? */ \
|
2003-07-23 20:12:24 +04:00
|
|
|
ossl_raise(rb_eRuntimeError, "THIS IS NOT A DSA!"); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
#define GetDSA(obj, dsa) do { \
|
|
|
|
EVP_PKEY *_pkey; \
|
|
|
|
GetPKeyDSA((obj), _pkey); \
|
|
|
|
(dsa) = EVP_PKEY_get0_DSA(_pkey); \
|
|
|
|
} while (0)
|
2003-07-23 20:12:24 +04:00
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
static inline int
|
2022-07-08 18:17:25 +03:00
|
|
|
DSA_HAS_PRIVATE(OSSL_3_const DSA *dsa)
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
{
|
2016-06-19 08:31:28 +03:00
|
|
|
const BIGNUM *bn;
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
DSA_get0_key(dsa, NULL, &bn);
|
|
|
|
return !!bn;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2022-07-08 18:17:25 +03:00
|
|
|
DSA_PRIVATE(VALUE obj, OSSL_3_const DSA *dsa)
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
{
|
|
|
|
return DSA_HAS_PRIVATE(dsa) || OSSL_PKEY_IS_PRIVATE(obj);
|
|
|
|
}
|
2003-07-23 20:12:24 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Classes
|
|
|
|
*/
|
|
|
|
VALUE cDSA;
|
|
|
|
VALUE eDSAError;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Private
|
|
|
|
*/
|
2007-03-29 21:29:03 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-08-29 08:47:09 +03:00
|
|
|
* DSA.new -> dsa
|
|
|
|
* DSA.new(string [, pass]) -> dsa
|
2020-05-17 16:14:03 +03:00
|
|
|
* DSA.new(size) -> dsa
|
2007-03-29 21:29:03 +04:00
|
|
|
*
|
2017-09-03 15:35:27 +03:00
|
|
|
* Creates a new DSA instance by reading an existing key from _string_.
|
2011-06-12 19:48:28 +04:00
|
|
|
*
|
2020-05-17 16:14:03 +03:00
|
|
|
* If called without arguments, creates a new instance with no key components
|
|
|
|
* set. They can be set individually by #set_pqg and #set_key.
|
2007-03-29 21:29:03 +04:00
|
|
|
*
|
2020-05-17 16:14:03 +03:00
|
|
|
* If called with a String, tries to parse as DER or PEM encoding of a \DSA key.
|
|
|
|
* See also OpenSSL::PKey.read which can parse keys of any kinds.
|
|
|
|
*
|
|
|
|
* If called with a number, generates random parameters and a key pair. This
|
|
|
|
* form works as an alias of DSA.generate.
|
|
|
|
*
|
|
|
|
* +string+::
|
|
|
|
* A String that contains a DER or PEM encoded key.
|
|
|
|
* +pass+::
|
|
|
|
* A String that contains an optional password.
|
|
|
|
* +size+::
|
|
|
|
* See DSA.generate.
|
2007-03-29 21:29:03 +04:00
|
|
|
*
|
2020-05-17 16:14:03 +03:00
|
|
|
* Examples:
|
|
|
|
* p OpenSSL::PKey::DSA.new(1024)
|
|
|
|
* #=> #<OpenSSL::PKey::DSA:0x000055a8d6025bf0 oid=DSA>
|
|
|
|
*
|
|
|
|
* p OpenSSL::PKey::DSA.new(File.read('dsa.pem'))
|
|
|
|
* #=> #<OpenSSL::PKey::DSA:0x000055555d6b8110 oid=DSA>
|
|
|
|
*
|
|
|
|
* p OpenSSL::PKey::DSA.new(File.read('dsa.pem'), 'mypassword')
|
|
|
|
* #=> #<OpenSSL::PKey::DSA:0x0000556f973c40b8 oid=DSA>
|
2007-03-29 21:29:03 +04:00
|
|
|
*/
|
2003-07-23 20:12:24 +04:00
|
|
|
static VALUE
|
|
|
|
ossl_dsa_initialize(int argc, VALUE *argv, VALUE self)
|
|
|
|
{
|
2021-04-12 12:32:40 +03:00
|
|
|
EVP_PKEY *pkey;
|
|
|
|
DSA *dsa;
|
|
|
|
BIO *in = NULL;
|
2003-09-17 13:05:02 +04:00
|
|
|
VALUE arg, pass;
|
2021-04-12 12:32:40 +03:00
|
|
|
int type;
|
|
|
|
|
|
|
|
TypedData_Get_Struct(self, EVP_PKEY, &ossl_evp_pkey_type, pkey);
|
|
|
|
if (pkey)
|
|
|
|
rb_raise(rb_eTypeError, "pkey already initialized");
|
2010-04-22 12:21:01 +04:00
|
|
|
|
2020-05-17 16:14:03 +03:00
|
|
|
/* The DSA.new(size, generator) form is handled by lib/openssl/pkey.rb */
|
2017-06-13 17:39:41 +03:00
|
|
|
rb_scan_args(argc, argv, "02", &arg, &pass);
|
|
|
|
if (argc == 0) {
|
* ext/openssl/ossl_pkey_dh.c (ossl_dh_initialize): should create
empty pkey object if no argument is passed. [ruby-talk:103328]
* ext/openssl/ossl_pkey_dsa.c (ossl_dsa_initialize): ditto.
* ext/openssl/ossl_pkey_rsa.c (ossl_rsa_initialize): ditto.
* ext/openssl/ossl_pkey_dh.c: add new methods: OpenSSL::PKey::DH#p,
OpenSSL::PKey::DH#p=, OpenSSL::PKey::DH#g, OpenSSL::PKey::DH#g=,
OpenSSL::PKey::DH#pub_key, OpenSSL::PKey::DH#pub_key=,
OpenSSL::PKey::DH#priv_key and OpenSSL::PKey::DH#priv_key=.
* ext/openssl/ossl_pkey_dsa.c: add new methods: OpenSSL::PKey::DSA#p,
OpenSSL::PKey::DSA#p=, OpenSSL::PKey::DSA#q, OpenSSL::PKey::DSA#q=,
OpenSSL::PKey::DSA#g, OpenSSL::PKey::DSA#g=,
OpenSSL::PKey::DSA#pub_key, OpenSSL::PKey::DSA#pub_key=,
OpenSSL::PKey::DSA#priv_key and OpenSSL::PKey::DSA#priv_key=.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-06-21 20:36:19 +04:00
|
|
|
dsa = DSA_new();
|
2017-06-13 17:39:41 +03:00
|
|
|
if (!dsa)
|
|
|
|
ossl_raise(eDSAError, "DSA_new");
|
2021-04-12 12:32:40 +03:00
|
|
|
goto legacy;
|
* ext/openssl/ossl_pkey_dh.c (ossl_dh_initialize): should create
empty pkey object if no argument is passed. [ruby-talk:103328]
* ext/openssl/ossl_pkey_dsa.c (ossl_dsa_initialize): ditto.
* ext/openssl/ossl_pkey_rsa.c (ossl_rsa_initialize): ditto.
* ext/openssl/ossl_pkey_dh.c: add new methods: OpenSSL::PKey::DH#p,
OpenSSL::PKey::DH#p=, OpenSSL::PKey::DH#g, OpenSSL::PKey::DH#g=,
OpenSSL::PKey::DH#pub_key, OpenSSL::PKey::DH#pub_key=,
OpenSSL::PKey::DH#priv_key and OpenSSL::PKey::DH#priv_key=.
* ext/openssl/ossl_pkey_dsa.c: add new methods: OpenSSL::PKey::DSA#p,
OpenSSL::PKey::DSA#p=, OpenSSL::PKey::DSA#q, OpenSSL::PKey::DSA#q=,
OpenSSL::PKey::DSA#g, OpenSSL::PKey::DSA#g=,
OpenSSL::PKey::DSA#pub_key, OpenSSL::PKey::DSA#pub_key=,
OpenSSL::PKey::DSA#priv_key and OpenSSL::PKey::DSA#priv_key=.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-06-21 20:36:19 +04:00
|
|
|
}
|
2021-04-12 12:32:40 +03:00
|
|
|
|
|
|
|
pass = ossl_pem_passwd_value(pass);
|
|
|
|
arg = ossl_to_der_if_possible(arg);
|
|
|
|
in = ossl_obj2bio(&arg);
|
|
|
|
|
|
|
|
/* DER-encoded DSAPublicKey format isn't supported by the generic routine */
|
|
|
|
dsa = (DSA *)PEM_ASN1_read_bio((d2i_of_void *)d2i_DSAPublicKey,
|
|
|
|
PEM_STRING_DSA_PUBLIC,
|
|
|
|
in, NULL, NULL, NULL);
|
|
|
|
if (dsa)
|
|
|
|
goto legacy;
|
|
|
|
OSSL_BIO_reset(in);
|
|
|
|
|
|
|
|
pkey = ossl_pkey_read_generic(in, pass);
|
|
|
|
BIO_free(in);
|
|
|
|
if (!pkey)
|
|
|
|
ossl_raise(eDSAError, "Neither PUB key nor PRIV key");
|
|
|
|
|
|
|
|
type = EVP_PKEY_base_id(pkey);
|
|
|
|
if (type != EVP_PKEY_DSA) {
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
rb_raise(eDSAError, "incorrect pkey type: %s", OBJ_nid2sn(type));
|
2003-07-23 20:12:24 +04:00
|
|
|
}
|
2021-04-12 12:32:40 +03:00
|
|
|
RTYPEDDATA_DATA(self) = pkey;
|
|
|
|
return self;
|
2003-07-23 20:12:24 +04:00
|
|
|
|
2021-04-12 12:32:40 +03:00
|
|
|
legacy:
|
|
|
|
BIO_free(in);
|
|
|
|
pkey = EVP_PKEY_new();
|
|
|
|
if (!pkey || EVP_PKEY_assign_DSA(pkey, dsa) != 1) {
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
DSA_free(dsa);
|
|
|
|
ossl_raise(eDSAError, "EVP_PKEY_assign_DSA");
|
|
|
|
}
|
|
|
|
RTYPEDDATA_DATA(self) = pkey;
|
2003-07-23 20:12:24 +04:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2021-04-22 10:33:59 +03:00
|
|
|
#ifndef HAVE_EVP_PKEY_DUP
|
2016-06-19 12:29:59 +03:00
|
|
|
static VALUE
|
|
|
|
ossl_dsa_initialize_copy(VALUE self, VALUE other)
|
|
|
|
{
|
|
|
|
EVP_PKEY *pkey;
|
|
|
|
DSA *dsa, *dsa_new;
|
|
|
|
|
2021-04-12 12:32:40 +03:00
|
|
|
TypedData_Get_Struct(self, EVP_PKEY, &ossl_evp_pkey_type, pkey);
|
|
|
|
if (pkey)
|
|
|
|
rb_raise(rb_eTypeError, "pkey already initialized");
|
2016-06-19 12:29:59 +03:00
|
|
|
GetDSA(other, dsa);
|
|
|
|
|
2021-04-12 12:32:40 +03:00
|
|
|
dsa_new = (DSA *)ASN1_dup((i2d_of_void *)i2d_DSAPrivateKey,
|
|
|
|
(d2i_of_void *)d2i_DSAPrivateKey,
|
|
|
|
(char *)dsa);
|
2016-06-19 12:29:59 +03:00
|
|
|
if (!dsa_new)
|
|
|
|
ossl_raise(eDSAError, "ASN1_dup");
|
|
|
|
|
2021-04-12 12:32:40 +03:00
|
|
|
pkey = EVP_PKEY_new();
|
|
|
|
if (!pkey || EVP_PKEY_assign_DSA(pkey, dsa_new) != 1) {
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
DSA_free(dsa_new);
|
|
|
|
ossl_raise(eDSAError, "EVP_PKEY_assign_DSA");
|
|
|
|
}
|
|
|
|
RTYPEDDATA_DATA(self) = pkey;
|
2016-06-19 12:29:59 +03:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
2021-04-22 10:33:59 +03:00
|
|
|
#endif
|
2016-06-19 12:29:59 +03:00
|
|
|
|
2007-03-29 21:29:03 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dsa.public? -> true | false
|
|
|
|
*
|
2011-06-12 19:48:28 +04:00
|
|
|
* Indicates whether this DSA instance has a public key associated with it or
|
|
|
|
* not. The public key may be retrieved with DSA#public_key.
|
2007-03-29 21:29:03 +04:00
|
|
|
*/
|
2003-07-23 20:12:24 +04:00
|
|
|
static VALUE
|
|
|
|
ossl_dsa_is_public(VALUE self)
|
|
|
|
{
|
2022-07-08 18:17:25 +03:00
|
|
|
const DSA *dsa;
|
2016-06-19 08:31:28 +03:00
|
|
|
const BIGNUM *bn;
|
2003-07-23 20:12:24 +04:00
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
GetDSA(self, dsa);
|
|
|
|
DSA_get0_key(dsa, &bn, NULL);
|
2003-07-23 20:12:24 +04:00
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
return bn ? Qtrue : Qfalse;
|
2003-07-23 20:12:24 +04:00
|
|
|
}
|
|
|
|
|
2007-03-29 21:29:03 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dsa.private? -> true | false
|
|
|
|
*
|
2011-06-12 19:48:28 +04:00
|
|
|
* Indicates whether this DSA instance has a private key associated with it or
|
|
|
|
* not. The private key may be retrieved with DSA#private_key.
|
2007-03-29 21:29:03 +04:00
|
|
|
*/
|
2003-07-23 20:12:24 +04:00
|
|
|
static VALUE
|
|
|
|
ossl_dsa_is_private(VALUE self)
|
|
|
|
{
|
2022-07-08 18:17:25 +03:00
|
|
|
OSSL_3_const DSA *dsa;
|
2010-04-22 12:21:01 +04:00
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
GetDSA(self, dsa);
|
2010-04-22 12:21:01 +04:00
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
return DSA_PRIVATE(self, dsa) ? Qtrue : Qfalse;
|
2003-07-23 20:12:24 +04:00
|
|
|
}
|
|
|
|
|
2007-03-29 21:29:03 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2013-04-16 06:24:09 +04:00
|
|
|
* dsa.export([cipher, password]) -> aString
|
2007-03-29 21:29:03 +04:00
|
|
|
* dsa.to_pem([cipher, password]) -> aString
|
2013-04-16 06:24:09 +04:00
|
|
|
* dsa.to_s([cipher, password]) -> aString
|
2007-03-29 21:29:03 +04:00
|
|
|
*
|
2023-06-28 06:09:27 +03:00
|
|
|
* Serializes a private or public key to a PEM-encoding.
|
2007-03-29 21:29:03 +04:00
|
|
|
*
|
2023-06-28 06:09:27 +03:00
|
|
|
* [When the key contains public components only]
|
2011-06-12 19:48:28 +04:00
|
|
|
*
|
2023-06-28 06:09:27 +03:00
|
|
|
* Serializes it into an X.509 SubjectPublicKeyInfo.
|
|
|
|
* The parameters _cipher_ and _password_ are ignored.
|
2007-03-29 21:29:03 +04:00
|
|
|
*
|
2023-06-28 06:09:27 +03:00
|
|
|
* A PEM-encoded key will look like:
|
|
|
|
*
|
|
|
|
* -----BEGIN PUBLIC KEY-----
|
|
|
|
* [...]
|
|
|
|
* -----END PUBLIC KEY-----
|
|
|
|
*
|
|
|
|
* Consider using #public_to_pem instead. This serializes the key into an
|
|
|
|
* X.509 SubjectPublicKeyInfo regardless of whether it is a public key
|
|
|
|
* or a private key.
|
|
|
|
*
|
|
|
|
* [When the key contains private components, and no parameters are given]
|
|
|
|
*
|
|
|
|
* Serializes it into a traditional \OpenSSL DSAPrivateKey.
|
|
|
|
*
|
|
|
|
* A PEM-encoded key will look like:
|
|
|
|
*
|
|
|
|
* -----BEGIN DSA PRIVATE KEY-----
|
|
|
|
* [...]
|
|
|
|
* -----END DSA PRIVATE KEY-----
|
|
|
|
*
|
|
|
|
* [When the key contains private components, and _cipher_ and _password_ are given]
|
|
|
|
*
|
|
|
|
* Serializes it into a traditional \OpenSSL DSAPrivateKey and encrypts it in
|
|
|
|
* OpenSSL's traditional PEM encryption format.
|
|
|
|
* _cipher_ must be a cipher name understood by OpenSSL::Cipher.new or an
|
|
|
|
* instance of OpenSSL::Cipher.
|
|
|
|
*
|
|
|
|
* An encrypted PEM-encoded key will look like:
|
|
|
|
*
|
|
|
|
* -----BEGIN DSA PRIVATE KEY-----
|
|
|
|
* Proc-Type: 4,ENCRYPTED
|
|
|
|
* DEK-Info: AES-128-CBC,733F5302505B34701FC41F5C0746E4C0
|
|
|
|
*
|
|
|
|
* [...]
|
|
|
|
* -----END DSA PRIVATE KEY-----
|
|
|
|
*
|
|
|
|
* Note that this format uses MD5 to derive the encryption key, and hence
|
|
|
|
* will not be available on FIPS-compliant systems.
|
|
|
|
*
|
|
|
|
* <b>This method is kept for compatibility.</b>
|
|
|
|
* This should only be used when the traditional, non-standard \OpenSSL format
|
|
|
|
* is required.
|
|
|
|
*
|
|
|
|
* Consider using #public_to_pem (X.509 SubjectPublicKeyInfo) or #private_to_pem
|
|
|
|
* (PKCS #8 PrivateKeyInfo or EncryptedPrivateKeyInfo) instead.
|
2007-03-29 21:29:03 +04:00
|
|
|
*/
|
2003-07-23 20:12:24 +04:00
|
|
|
static VALUE
|
|
|
|
ossl_dsa_export(int argc, VALUE *argv, VALUE self)
|
|
|
|
{
|
2022-07-08 18:17:25 +03:00
|
|
|
OSSL_3_const DSA *dsa;
|
2003-07-23 20:12:24 +04:00
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
GetDSA(self, dsa);
|
2017-06-13 18:25:43 +03:00
|
|
|
if (DSA_HAS_PRIVATE(dsa))
|
|
|
|
return ossl_pkey_export_traditional(argc, argv, self, 0);
|
|
|
|
else
|
|
|
|
return ossl_pkey_export_spki(self, 0);
|
2003-07-23 20:12:24 +04:00
|
|
|
}
|
|
|
|
|
2007-03-29 21:29:03 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* dsa.to_der -> aString
|
|
|
|
*
|
2023-06-28 06:09:27 +03:00
|
|
|
* Serializes a private or public key to a DER-encoding.
|
|
|
|
*
|
|
|
|
* See #to_pem for details.
|
|
|
|
*
|
|
|
|
* <b>This method is kept for compatibility.</b>
|
|
|
|
* This should only be used when the traditional, non-standard \OpenSSL format
|
|
|
|
* is required.
|
2011-06-12 19:48:28 +04:00
|
|
|
*
|
2023-06-28 06:09:27 +03:00
|
|
|
* Consider using #public_to_der or #private_to_der instead.
|
2007-03-29 21:29:03 +04:00
|
|
|
*/
|
2004-01-08 15:24:22 +03:00
|
|
|
static VALUE
|
|
|
|
ossl_dsa_to_der(VALUE self)
|
|
|
|
{
|
2022-07-08 18:17:25 +03:00
|
|
|
OSSL_3_const DSA *dsa;
|
2004-01-08 15:24:22 +03:00
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
GetDSA(self, dsa);
|
2017-06-13 18:25:43 +03:00
|
|
|
if (DSA_HAS_PRIVATE(dsa))
|
|
|
|
return ossl_pkey_export_traditional(0, NULL, self, 1);
|
2004-01-08 15:24:22 +03:00
|
|
|
else
|
2017-06-13 18:25:43 +03:00
|
|
|
return ossl_pkey_export_spki(self, 1);
|
2004-01-08 15:24:22 +03:00
|
|
|
}
|
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
|
2003-07-23 20:12:24 +04:00
|
|
|
/*
|
2007-03-29 21:29:03 +04:00
|
|
|
* call-seq:
|
|
|
|
* dsa.params -> hash
|
|
|
|
*
|
2003-07-23 20:12:24 +04:00
|
|
|
* Stores all parameters of key to the hash
|
|
|
|
* INSECURE: PRIVATE INFORMATIONS CAN LEAK OUT!!!
|
|
|
|
* Don't use :-)) (I's up to you)
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
ossl_dsa_get_params(VALUE self)
|
|
|
|
{
|
2022-07-08 18:17:25 +03:00
|
|
|
OSSL_3_const DSA *dsa;
|
2003-07-23 20:12:24 +04:00
|
|
|
VALUE hash;
|
2016-06-19 08:31:28 +03:00
|
|
|
const BIGNUM *p, *q, *g, *pub_key, *priv_key;
|
2003-07-23 20:12:24 +04:00
|
|
|
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
GetDSA(self, dsa);
|
|
|
|
DSA_get0_pqg(dsa, &p, &q, &g);
|
|
|
|
DSA_get0_key(dsa, &pub_key, &priv_key);
|
2003-07-23 20:12:24 +04:00
|
|
|
|
|
|
|
hash = rb_hash_new();
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
rb_hash_aset(hash, rb_str_new2("p"), ossl_bn_new(p));
|
|
|
|
rb_hash_aset(hash, rb_str_new2("q"), ossl_bn_new(q));
|
|
|
|
rb_hash_aset(hash, rb_str_new2("g"), ossl_bn_new(g));
|
|
|
|
rb_hash_aset(hash, rb_str_new2("pub_key"), ossl_bn_new(pub_key));
|
|
|
|
rb_hash_aset(hash, rb_str_new2("priv_key"), ossl_bn_new(priv_key));
|
2010-04-22 12:04:13 +04:00
|
|
|
|
2003-07-23 20:12:24 +04:00
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2016-08-29 08:47:09 +03:00
|
|
|
/*
|
|
|
|
* Document-method: OpenSSL::PKey::DSA#set_pqg
|
|
|
|
* call-seq:
|
|
|
|
* dsa.set_pqg(p, q, g) -> self
|
|
|
|
*
|
2017-09-03 15:35:27 +03:00
|
|
|
* Sets _p_, _q_, _g_ to the DSA instance.
|
2016-08-29 08:47:09 +03:00
|
|
|
*/
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
OSSL_PKEY_BN_DEF3(dsa, DSA, pqg, p, q, g)
|
2016-08-29 08:47:09 +03:00
|
|
|
/*
|
|
|
|
* Document-method: OpenSSL::PKey::DSA#set_key
|
|
|
|
* call-seq:
|
|
|
|
* dsa.set_key(pub_key, priv_key) -> self
|
|
|
|
*
|
2017-09-03 15:35:27 +03:00
|
|
|
* Sets _pub_key_ and _priv_key_ for the DSA instance. _priv_key_ may be +nil+.
|
2016-08-29 08:47:09 +03:00
|
|
|
*/
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
OSSL_PKEY_BN_DEF2(dsa, DSA, key, pub_key, priv_key)
|
* ext/openssl/ossl_pkey_dh.c (ossl_dh_initialize): should create
empty pkey object if no argument is passed. [ruby-talk:103328]
* ext/openssl/ossl_pkey_dsa.c (ossl_dsa_initialize): ditto.
* ext/openssl/ossl_pkey_rsa.c (ossl_rsa_initialize): ditto.
* ext/openssl/ossl_pkey_dh.c: add new methods: OpenSSL::PKey::DH#p,
OpenSSL::PKey::DH#p=, OpenSSL::PKey::DH#g, OpenSSL::PKey::DH#g=,
OpenSSL::PKey::DH#pub_key, OpenSSL::PKey::DH#pub_key=,
OpenSSL::PKey::DH#priv_key and OpenSSL::PKey::DH#priv_key=.
* ext/openssl/ossl_pkey_dsa.c: add new methods: OpenSSL::PKey::DSA#p,
OpenSSL::PKey::DSA#p=, OpenSSL::PKey::DSA#q, OpenSSL::PKey::DSA#q=,
OpenSSL::PKey::DSA#g, OpenSSL::PKey::DSA#g=,
OpenSSL::PKey::DSA#pub_key, OpenSSL::PKey::DSA#pub_key=,
OpenSSL::PKey::DSA#priv_key and OpenSSL::PKey::DSA#priv_key=.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-06-21 20:36:19 +04:00
|
|
|
|
2003-07-23 20:12:24 +04:00
|
|
|
/*
|
|
|
|
* INIT
|
|
|
|
*/
|
|
|
|
void
|
2014-09-30 09:25:32 +04:00
|
|
|
Init_ossl_dsa(void)
|
2003-07-23 20:12:24 +04:00
|
|
|
{
|
2010-12-06 03:54:44 +03:00
|
|
|
#if 0
|
2007-03-12 05:01:19 +03:00
|
|
|
mPKey = rb_define_module_under(mOSSL, "PKey");
|
2016-08-29 08:47:09 +03:00
|
|
|
cPKey = rb_define_class_under(mPKey, "PKey", rb_cObject);
|
|
|
|
ePKeyError = rb_define_class_under(mPKey, "PKeyError", eOSSLError);
|
2007-03-12 05:01:19 +03:00
|
|
|
#endif
|
|
|
|
|
2011-06-12 19:48:28 +04:00
|
|
|
/* Document-class: OpenSSL::PKey::DSAError
|
|
|
|
*
|
|
|
|
* Generic exception that is raised if an operation on a DSA PKey
|
|
|
|
* fails unexpectedly or in case an instantiation of an instance of DSA
|
|
|
|
* fails due to non-conformant input data.
|
|
|
|
*/
|
2003-07-23 20:12:24 +04:00
|
|
|
eDSAError = rb_define_class_under(mPKey, "DSAError", ePKeyError);
|
|
|
|
|
2011-06-12 19:48:28 +04:00
|
|
|
/* Document-class: OpenSSL::PKey::DSA
|
|
|
|
*
|
2011-07-01 00:20:32 +04:00
|
|
|
* DSA, the Digital Signature Algorithm, is specified in NIST's
|
2011-06-12 19:48:28 +04:00
|
|
|
* FIPS 186-3. It is an asymmetric public key algorithm that may be used
|
|
|
|
* similar to e.g. RSA.
|
|
|
|
*/
|
2003-07-23 20:12:24 +04:00
|
|
|
cDSA = rb_define_class_under(mPKey, "DSA", cPKey);
|
2010-04-22 12:21:01 +04:00
|
|
|
|
2003-07-23 20:12:24 +04:00
|
|
|
rb_define_method(cDSA, "initialize", ossl_dsa_initialize, -1);
|
2021-04-22 10:33:59 +03:00
|
|
|
#ifndef HAVE_EVP_PKEY_DUP
|
2017-09-03 15:35:27 +03:00
|
|
|
rb_define_method(cDSA, "initialize_copy", ossl_dsa_initialize_copy, 1);
|
2021-04-22 10:33:59 +03:00
|
|
|
#endif
|
2003-07-23 20:12:24 +04:00
|
|
|
|
|
|
|
rb_define_method(cDSA, "public?", ossl_dsa_is_public, 0);
|
|
|
|
rb_define_method(cDSA, "private?", ossl_dsa_is_private, 0);
|
|
|
|
rb_define_method(cDSA, "export", ossl_dsa_export, -1);
|
|
|
|
rb_define_alias(cDSA, "to_pem", "export");
|
|
|
|
rb_define_alias(cDSA, "to_s", "export");
|
2004-01-08 15:24:22 +03:00
|
|
|
rb_define_method(cDSA, "to_der", ossl_dsa_to_der, 0);
|
2003-07-23 20:12:24 +04:00
|
|
|
|
* ext/openssl/ossl_pkey_dh.c (ossl_dh_initialize): should create
empty pkey object if no argument is passed. [ruby-talk:103328]
* ext/openssl/ossl_pkey_dsa.c (ossl_dsa_initialize): ditto.
* ext/openssl/ossl_pkey_rsa.c (ossl_rsa_initialize): ditto.
* ext/openssl/ossl_pkey_dh.c: add new methods: OpenSSL::PKey::DH#p,
OpenSSL::PKey::DH#p=, OpenSSL::PKey::DH#g, OpenSSL::PKey::DH#g=,
OpenSSL::PKey::DH#pub_key, OpenSSL::PKey::DH#pub_key=,
OpenSSL::PKey::DH#priv_key and OpenSSL::PKey::DH#priv_key=.
* ext/openssl/ossl_pkey_dsa.c: add new methods: OpenSSL::PKey::DSA#p,
OpenSSL::PKey::DSA#p=, OpenSSL::PKey::DSA#q, OpenSSL::PKey::DSA#q=,
OpenSSL::PKey::DSA#g, OpenSSL::PKey::DSA#g=,
OpenSSL::PKey::DSA#pub_key, OpenSSL::PKey::DSA#pub_key=,
OpenSSL::PKey::DSA#priv_key and OpenSSL::PKey::DSA#priv_key=.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-06-21 20:36:19 +04:00
|
|
|
DEF_OSSL_PKEY_BN(cDSA, dsa, p);
|
|
|
|
DEF_OSSL_PKEY_BN(cDSA, dsa, q);
|
|
|
|
DEF_OSSL_PKEY_BN(cDSA, dsa, g);
|
|
|
|
DEF_OSSL_PKEY_BN(cDSA, dsa, pub_key);
|
|
|
|
DEF_OSSL_PKEY_BN(cDSA, dsa, priv_key);
|
openssl: adapt OpenSSL::PKey to OpenSSL 1.1.0 opaque structs
* ext/openssl/openssl_missing.[ch]: Implement EVP_PKEY_get0_*() and
{RSA,DSA,EC_KEY,DH}_get0_*() functions.
OpenSSL 1.1.0 makes EVP_PKEY/RSA/DSA/DH opaque. We used to provide
setter methods for each parameter of each PKey type, for example
PKey::RSA#e=, but this is no longer possible because the new API
RSA_set0_key() requires the 'n' at the same time. This commit adds
deprecation warning to them and adds PKey::*#set_* methods as direct
wrapper for those new APIs. For example, 'rsa.e = 3' now needs to be
rewritten as 'rsa.set_key(rsa.n, 3, rsa.d)'.
[ruby-core:75225] [Feature #12324]
* ext/openssl/ossl_pkey*.[ch]: Use the new accessor functions. Implement
RSA#set_{key,factors,crt_params}, DSA#set_{key,pqg}, DH#set_{key,pqg}.
Emit a warning with rb_warning() when old setter methods are used.
* test/drb/ut_array_drbssl.rb, test/drb/ut_drb_drbssl.rb,
test/rubygems/test_gem_remote_fetcher.rb: Don't set a priv_key for DH
object that are used in tmp_dh_callback. Generating a new key pair
every time should be fine - actually the private exponent is ignored
in OpenSSL >= 1.0.2f/1.0.1r even if we explicitly set.
https://www.openssl.org/news/secadv/20160128.txt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 18:00:47 +03:00
|
|
|
rb_define_method(cDSA, "set_pqg", ossl_dsa_set_pqg, 3);
|
|
|
|
rb_define_method(cDSA, "set_key", ossl_dsa_set_key, 2);
|
* ext/openssl/ossl_pkey_dh.c (ossl_dh_initialize): should create
empty pkey object if no argument is passed. [ruby-talk:103328]
* ext/openssl/ossl_pkey_dsa.c (ossl_dsa_initialize): ditto.
* ext/openssl/ossl_pkey_rsa.c (ossl_rsa_initialize): ditto.
* ext/openssl/ossl_pkey_dh.c: add new methods: OpenSSL::PKey::DH#p,
OpenSSL::PKey::DH#p=, OpenSSL::PKey::DH#g, OpenSSL::PKey::DH#g=,
OpenSSL::PKey::DH#pub_key, OpenSSL::PKey::DH#pub_key=,
OpenSSL::PKey::DH#priv_key and OpenSSL::PKey::DH#priv_key=.
* ext/openssl/ossl_pkey_dsa.c: add new methods: OpenSSL::PKey::DSA#p,
OpenSSL::PKey::DSA#p=, OpenSSL::PKey::DSA#q, OpenSSL::PKey::DSA#q=,
OpenSSL::PKey::DSA#g, OpenSSL::PKey::DSA#g=,
OpenSSL::PKey::DSA#pub_key, OpenSSL::PKey::DSA#pub_key=,
OpenSSL::PKey::DSA#priv_key and OpenSSL::PKey::DSA#priv_key=.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-06-21 20:36:19 +04:00
|
|
|
|
2003-07-23 20:12:24 +04:00
|
|
|
rb_define_method(cDSA, "params", ossl_dsa_get_params, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* defined NO_DSA */
|
|
|
|
void
|
2014-09-30 09:25:32 +04:00
|
|
|
Init_ossl_dsa(void)
|
2003-07-23 20:12:24 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* NO_DSA */
|