Update eng_fat.c
authorMerQGh <34228890+MerQGh@users.noreply.github.com>
Mon, 4 Dec 2017 06:20:51 +0000 (09:20 +0300)
committerRichard Levitte <levitte@openssl.org>
Mon, 4 Dec 2017 16:44:32 +0000 (17:44 +0100)
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)

(cherry picked from commit b35bb37a3d6ecf11b43ef8717600ab61718c3cc2)

crypto/engine/eng_fat.c

index 631aa39612ff74c22cbd17f7a5c759d734a1f1e6..5cb818742925763a8431db8cc920763bc90c68f2 100644 (file)
@@ -113,6 +113,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;
 }