diff options
author | miod <> | 2014-11-09 19:17:13 +0000 |
---|---|---|
committer | miod <> | 2014-11-09 19:17:13 +0000 |
commit | 12455d6eff265f95b0a7e20595630321799f50a2 (patch) | |
tree | 8f4747a1df4b007feca32e262b38052339c686c1 /src/lib/libcrypto/evp/c_alld.c | |
parent | a3c50c7d270773c83559454fd2b75ec6e04f43ab (diff) | |
download | openbsd-12455d6eff265f95b0a7e20595630321799f50a2.tar.gz openbsd-12455d6eff265f95b0a7e20595630321799f50a2.tar.bz2 openbsd-12455d6eff265f95b0a7e20595630321799f50a2.zip |
GOST crypto algorithms (well, most of them), ported from the removed GOST
engine to regular EVP citizens, contributed by Dmitry Eremin-Solenikov;
libcrypto bits only for now.
This is a verbatim import of Dmitry's work, and does not compile in this
state; the forthcoming commits will address these issues.
None of the GOST code is enabled in libcrypto yet, for it still gets
compiled with OPENSSL_NO_GOST defined. However, the public header gost.h
will be installed.
Diffstat (limited to 'src/lib/libcrypto/evp/c_alld.c')
-rw-r--r-- | src/lib/libcrypto/evp/c_alld.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/c_alld.c b/src/lib/libcrypto/evp/c_alld.c index 8f59100caa..99da8acdae 100644 --- a/src/lib/libcrypto/evp/c_alld.c +++ b/src/lib/libcrypto/evp/c_alld.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: c_alld.c,v 1.11 2014/07/11 08:44:48 jsing Exp $ */ | 1 | /* $OpenBSD: c_alld.c,v 1.12 2014/11/09 19:17:13 miod Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -95,6 +95,12 @@ OpenSSL_add_all_digests(void) | |||
95 | EVP_add_digest(EVP_ecdsa()); | 95 | EVP_add_digest(EVP_ecdsa()); |
96 | #endif | 96 | #endif |
97 | #endif | 97 | #endif |
98 | #ifndef OPENSSL_NO_GOST | ||
99 | EVP_add_digest(EVP_gostr341194()); | ||
100 | EVP_add_digest(EVP_gost2814789imit()); | ||
101 | EVP_add_digest(EVP_streebog256()); | ||
102 | EVP_add_digest(EVP_streebog512()); | ||
103 | #endif | ||
98 | #if !defined(OPENSSL_NO_MDC2) && !defined(OPENSSL_NO_DES) | 104 | #if !defined(OPENSSL_NO_MDC2) && !defined(OPENSSL_NO_DES) |
99 | EVP_add_digest(EVP_mdc2()); | 105 | EVP_add_digest(EVP_mdc2()); |
100 | #endif | 106 | #endif |