-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal for creating pkeys from raw parameters #555
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -446,6 +446,186 @@ pkey_generate(int argc, VALUE *argv, VALUE self, int genparam) | |
return ossl_pkey_new(gen_arg.pkey); | ||
} | ||
|
||
#if OSSL_OPENSSL_PREREQ(3, 0, 0) | ||
#include <openssl/param_build.h> | ||
#include <openssl/core_names.h> | ||
|
||
struct pkey_from_data_alias { | ||
char alias[10]; | ||
char param_name[20]; | ||
}; | ||
|
||
static const struct pkey_from_data_alias rsa_aliases[] = { | ||
{ "p", OSSL_PKEY_PARAM_RSA_FACTOR1 }, | ||
{ "q", OSSL_PKEY_PARAM_RSA_FACTOR2 }, | ||
{ "dmp1", OSSL_PKEY_PARAM_RSA_EXPONENT1 }, | ||
{ "dmq1", OSSL_PKEY_PARAM_RSA_EXPONENT2 }, | ||
{ "iqmp", OSSL_PKEY_PARAM_RSA_COEFFICIENT1 }, | ||
{ "", "" } | ||
}; | ||
|
||
static const struct pkey_from_data_alias fcc_aliases[] = { | ||
{ "pub_key", OSSL_PKEY_PARAM_PUB_KEY }, | ||
{ "priv_key", OSSL_PKEY_PARAM_PRIV_KEY }, | ||
{ "", "" } | ||
}; | ||
|
||
struct pkey_from_data_arg { | ||
VALUE options; | ||
OSSL_PARAM_BLD *param_bld; | ||
const OSSL_PARAM *settable_params; | ||
const struct pkey_from_data_alias *aliases; | ||
}; | ||
|
||
static int | ||
add_data_to_builder(VALUE key, VALUE value, VALUE arg) | ||
{ | ||
if(NIL_P(value)) | ||
return ST_CONTINUE; | ||
|
||
if (SYMBOL_P(key)) | ||
key = rb_sym2str(key); | ||
|
||
const char *key_ptr = StringValueCStr(key); | ||
const struct pkey_from_data_arg *params = (const struct pkey_from_data_arg *) arg; | ||
|
||
for(int i = 0; strlen(params->aliases[i].alias) > 0; i++) { | ||
if(strcmp(params->aliases[i].alias, key_ptr) == 0) { | ||
key_ptr = params->aliases[i].param_name; | ||
break; | ||
} | ||
} | ||
|
||
for (const OSSL_PARAM *settable_params = params->settable_params; settable_params->key != NULL; settable_params++) { | ||
if(strcmp(settable_params->key, key_ptr) == 0) { | ||
switch (settable_params->data_type) { | ||
case OSSL_PARAM_INTEGER: | ||
case OSSL_PARAM_UNSIGNED_INTEGER: | ||
if(!OSSL_PARAM_BLD_push_BN(params->param_bld, key_ptr, GetBNPtr(value))) { | ||
ossl_raise(ePKeyError, "OSSL_PARAM_BLD_push_BN"); | ||
} | ||
break; | ||
case OSSL_PARAM_UTF8_STRING: | ||
StringValue(value); | ||
if(!OSSL_PARAM_BLD_push_utf8_string(params->param_bld, key_ptr, RSTRING_PTR(value), RSTRING_LENINT(value))) { | ||
ossl_raise(ePKeyError, "OSSL_PARAM_BLD_push_utf8_string"); | ||
} | ||
break; | ||
|
||
case OSSL_PARAM_OCTET_STRING: | ||
StringValue(value); | ||
if(!OSSL_PARAM_BLD_push_octet_string(params->param_bld, key_ptr, RSTRING_PTR(value), RSTRING_LENINT(value))) { | ||
ossl_raise(ePKeyError, "OSSL_PARAM_BLD_push_octet_string"); | ||
} | ||
break; | ||
case OSSL_PARAM_UTF8_PTR: | ||
case OSSL_PARAM_OCTET_PTR: | ||
ossl_raise(ePKeyError, "Unsupported parameter \"%s\", handling of OSSL_PARAM_UTF8_PTR and OSSL_PARAM_OCTET_PTR not implemented", key_ptr); | ||
break; | ||
default: | ||
ossl_raise(ePKeyError, "Unsupported parameter \"%s\"", key_ptr); | ||
break; | ||
} | ||
|
||
return ST_CONTINUE; | ||
} | ||
} | ||
|
||
VALUE supported_parameters = rb_ary_new(); | ||
|
||
for (const OSSL_PARAM *settable_params = params->settable_params; settable_params->key != NULL; settable_params++) { | ||
rb_ary_push(supported_parameters, rb_str_new_cstr(settable_params->key)); | ||
} | ||
|
||
for(int i = 0; strlen(params->aliases[i].alias) > 0; i++) { | ||
rb_ary_push(supported_parameters, rb_str_new_cstr(params->aliases[i].alias)); | ||
} | ||
rhenium marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
ossl_raise(ePKeyError, "Invalid parameter \"%s\". Supported parameters: %"PRIsVALUE, key_ptr, rb_ary_join(supported_parameters, rb_str_new2(", "))); | ||
} | ||
|
||
static VALUE | ||
iterate_from_data_options_cb(VALUE value) | ||
{ | ||
struct pkey_from_data_arg *args = (void *)value; | ||
|
||
rb_hash_foreach(args->options, &add_data_to_builder, (VALUE) args); | ||
|
||
return Qnil; | ||
} | ||
|
||
static VALUE | ||
pkey_from_data(int argc, VALUE *argv, VALUE self) | ||
{ | ||
VALUE alg, options; | ||
rb_scan_args(argc, argv, "11", &alg, &options); | ||
|
||
const char* algorithm = StringValueCStr(alg); | ||
|
||
EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new_from_name(NULL, algorithm, NULL); | ||
|
||
if (ctx == NULL) | ||
ossl_raise(ePKeyError, "EVP_PKEY_CTX_new_from_name"); | ||
|
||
struct pkey_from_data_arg from_data_args = { 0 }; | ||
|
||
from_data_args.param_bld = OSSL_PARAM_BLD_new(); | ||
from_data_args.options = options; | ||
|
||
if (from_data_args.param_bld == NULL) { | ||
EVP_PKEY_CTX_free(ctx); | ||
ossl_raise(ePKeyError, "OSSL_PARAM_BLD_new"); | ||
} | ||
|
||
from_data_args.settable_params = EVP_PKEY_fromdata_settable(ctx, EVP_PKEY_KEYPAIR); | ||
|
||
if (from_data_args.settable_params == NULL) { | ||
EVP_PKEY_CTX_free(ctx); | ||
OSSL_PARAM_BLD_free(from_data_args.param_bld); | ||
ossl_raise(ePKeyError, "EVP_PKEY_fromdata_settable"); | ||
} | ||
|
||
if (strcmp("RSA", algorithm) == 0) | ||
from_data_args.aliases = rsa_aliases; | ||
else | ||
from_data_args.aliases = fcc_aliases; | ||
|
||
int state; | ||
rb_protect(iterate_from_data_options_cb, (VALUE) &from_data_args, &state); | ||
|
||
if(state) { | ||
EVP_PKEY_CTX_free(ctx); | ||
OSSL_PARAM_BLD_free(from_data_args.param_bld); | ||
rb_jump_tag(state); | ||
} | ||
|
||
OSSL_PARAM *params = OSSL_PARAM_BLD_to_param(from_data_args.param_bld); | ||
OSSL_PARAM_BLD_free(from_data_args.param_bld); | ||
|
||
if (params == NULL) { | ||
EVP_PKEY_CTX_free(ctx); | ||
ossl_raise(ePKeyError, "OSSL_PARAM_BLD_to_param"); | ||
} | ||
|
||
EVP_PKEY *pkey = NULL; | ||
|
||
if (EVP_PKEY_fromdata_init(ctx) <= 0) { | ||
EVP_PKEY_CTX_free(ctx); | ||
ossl_raise(ePKeyError, "EVP_PKEY_fromdata_init"); | ||
} | ||
|
||
if (EVP_PKEY_fromdata(ctx, &pkey, EVP_PKEY_KEYPAIR, params) <= 0) { | ||
EVP_PKEY_CTX_free(ctx); | ||
ossl_raise(ePKeyError, "EVP_PKEY_fromdata"); | ||
} | ||
|
||
EVP_PKEY_CTX_free(ctx); | ||
|
||
return ossl_pkey_new(pkey); | ||
} | ||
|
||
#endif | ||
|
||
/* | ||
* call-seq: | ||
* OpenSSL::PKey.generate_parameters(algo_name [, options]) -> pkey | ||
|
@@ -498,6 +678,30 @@ ossl_pkey_s_generate_key(int argc, VALUE *argv, VALUE self) | |
return pkey_generate(argc, argv, self, 0); | ||
} | ||
|
||
/* | ||
* call-seq: | ||
* OpenSSL::PKey.from_data(algo_name, parameters) -> pkey | ||
* | ||
* Generates a new key based on given key parameters. | ||
* NOTE: Requires OpenSSL 3.0 or later. | ||
* | ||
* The first parameter is the type of the key to create, given as a String, for example RSA, DSA, EC etc. | ||
* Second parameter is the parameters to be used for the key. | ||
* | ||
* For details algorithms and parameters see https://www.openssl.org/docs/man3.0/man3/EVP_PKEY_fromdata.html | ||
* | ||
* == Example | ||
* pkey = OpenSSL::PKey.from_data("RSA", n: 3161751493, e: 65537, d: 2064855961) | ||
* pkey.private? #=> true | ||
* pkey.n #=> #<OpenSSL::BN 3161751493> | ||
*/ | ||
#if OSSL_OPENSSL_PREREQ(3, 0, 0) | ||
static VALUE | ||
ossl_pkey_s_from_data(int argc, VALUE *argv, VALUE self) | ||
{ | ||
return pkey_from_data(argc, argv, self); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We haven't been very consistent on this, but I think it might be a better design to not define this method for unsupported OpenSSL versions. I guess a user code that must work with both OpenSSL 1.1 and 3.x will have to check the availability of this method, so it would be easier that way. |
||
#endif | ||
/* | ||
* TODO: There is no convenient way to check the presence of public key | ||
* components on OpenSSL 3.0. But since keys are immutable on 3.0, pkeys without | ||
|
@@ -1751,6 +1955,9 @@ Init_ossl_pkey(void) | |
rb_define_module_function(mPKey, "read", ossl_pkey_new_from_data, -1); | ||
rb_define_module_function(mPKey, "generate_parameters", ossl_pkey_s_generate_parameters, -1); | ||
rb_define_module_function(mPKey, "generate_key", ossl_pkey_s_generate_key, -1); | ||
#if OSSL_OPENSSL_PREREQ(3, 0, 0) | ||
rb_define_module_function(mPKey, "from_data", ossl_pkey_s_from_data, -1); | ||
#endif | ||
#ifdef HAVE_EVP_PKEY_NEW_RAW_PRIVATE_KEY | ||
rb_define_module_function(mPKey, "new_raw_private_key", ossl_pkey_new_raw_private_key, 2); | ||
rb_define_module_function(mPKey, "new_raw_public_key", ossl_pkey_new_raw_public_key, 2); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please handle
default
too. I believe it would not reachable today, but just in case a future OpenSSL version adds new data types.