mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Commit miss from r52556
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52557 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
85dd19cf38
commit
293aa87118
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ ossl_pkey_sign(VALUE self, VALUE digest, VALUE data)
|
|||
StringValue(data);
|
||||
EVP_SignUpdate(&ctx, RSTRING_PTR(data), RSTRING_LEN(data));
|
||||
str = rb_str_new(0, EVP_PKEY_size(pkey)+16);
|
||||
result = EVP_SignFinal(&ctx, (unsigned char *)RSTRING_PTR(str), &buf_len, pkey)
|
||||
result = EVP_SignFinal(&ctx, (unsigned char *)RSTRING_PTR(str), &buf_len, pkey);
|
||||
EVP_MD_CTX_cleanup(&ctx);
|
||||
if (!result)
|
||||
ossl_raise(ePKeyError, NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue