diff options
author | MerQGh <34228890+MerQGh@users.noreply.github.com> | 2017-12-04 07:20:51 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-12-04 17:42:54 +0100 |
commit | b35bb37a3d6ecf11b43ef8717600ab61718c3cc2 (patch) | |
tree | 937ae86ba62574327af0da3bf2f3ee657becec2c /crypto/engine | |
parent | modes/asm/ghashv8-armx.pl: handle lengths not divisible by 4x. (diff) | |
download | openssl-b35bb37a3d6ecf11b43ef8717600ab61718c3cc2.tar.xz openssl-b35bb37a3d6ecf11b43ef8717600ab61718c3cc2.zip |
Update eng_fat.c
This line will allow use private keys, which created by Crypto Pro, to
sign with OpenSSL.
CLA: trivial
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4836)
Diffstat (limited to 'crypto/engine')
-rw-r--r-- | crypto/engine/eng_fat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/engine/eng_fat.c b/crypto/engine/eng_fat.c index 0ca41329cd..591fddc8e4 100644 --- a/crypto/engine/eng_fat.c +++ b/crypto/engine/eng_fat.c @@ -108,6 +108,7 @@ int ENGINE_register_complete(ENGINE *e) #endif ENGINE_register_RAND(e); ENGINE_register_pkey_meths(e); + ENGINE_register_pkey_asn1_meths(e); return 1; } |