From 6fca9feeffc18472c8153fd0bf8b0a95cc05c504 Mon Sep 17 00:00:00 2001 From: MerQGh <34228890+MerQGh@users.noreply.github.com> Date: Mon, 4 Dec 2017 09:20:51 +0300 Subject: [PATCH] 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 Reviewed-by: Tim Hudson Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/4836) (cherry picked from commit b35bb37a3d6ecf11b43ef8717600ab61718c3cc2) --- crypto/engine/eng_fat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/engine/eng_fat.c b/crypto/engine/eng_fat.c index 631aa39612ff7..5cb8187429257 100644 --- a/crypto/engine/eng_fat.c +++ b/crypto/engine/eng_fat.c @@ -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; }