From: Dmitry Belyavskiy Date: Thu, 3 May 2018 15:31:47 +0000 (+0300) Subject: Text description of GOST signature algorithms X-Git-Tag: OpenSSL_1_1_1-pre8~116 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f3a246c63eefc1e5da434df5dc7f48795a12c38b;p=oweals%2Fopenssl.git Text description of GOST signature algorithms Reviewed-by: Bernd Edlinger Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/6168) --- diff --git a/apps/s_cb.c b/apps/s_cb.c index 820491a037..46b3864284 100644 --- a/apps/s_cb.c +++ b/apps/s_cb.c @@ -234,6 +234,15 @@ static const char *get_sigtype(int nid) case NID_ED448: return "Ed448"; + case NID_id_GostR3410_2001: + return "gost2001"; + + case NID_id_GostR3410_2012_256: + return "gost2012_256"; + + case NID_id_GostR3410_2012_512: + return "gost2012_512"; + default: return NULL; }