diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-11-09 19:17:14 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-11-09 19:17:14 +0000 |
commit | 15ea1c9942d85fd5dfcdbb9cd3706e342992a3ce (patch) | |
tree | 1d104733ff0ae7cbdd0ef757595b0f15be358fce /lib/libcrypto/crypto | |
parent | 697eaf13c5b3912890a34ca02a46a23ce9e790a5 (diff) |
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 'lib/libcrypto/crypto')
-rw-r--r-- | lib/libcrypto/crypto/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/libcrypto/crypto/Makefile b/lib/libcrypto/crypto/Makefile index cd32382081f..0c4db18488b 100644 --- a/lib/libcrypto/crypto/Makefile +++ b/lib/libcrypto/crypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.46 2014/07/28 17:57:18 tedu Exp $ +# $OpenBSD: Makefile,v 1.47 2014/11/09 19:17:11 miod Exp $ LIB= crypto @@ -154,6 +154,13 @@ SRCS+= evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c SRCS+= e_old.c pmeth_lib.c pmeth_fn.c pmeth_gn.c m_sigver.c SRCS+= e_aes_cbc_hmac_sha1.c e_rc4_hmac_md5.c SRCS+= e_chacha.c evp_aead.c e_chacha20poly1305.c +#SRCS+= e_gost2814789.c m_gost2814789.c m_gostr341194.c m_streebog.c + +# gost/ +#SRCS+= gost2814789.c gost89_keywrap.c gost89_params.c gost89imit_ameth.c +#SRCS+= gost89imit_pmeth.c gost_asn1.c gost_err.c gostr341001.c +#SRCS+= gostr341001_ameth.c gostr341001_key.c gostr341001_params.c +#SRCS+= gostr341001_pmeth.c gostr341194.c streebog.c # hmac/ SRCS+= hmac.c hm_ameth.c hm_pmeth.c @@ -285,6 +292,7 @@ SRCS+= v3_asid.c v3_addr.c ${LCRYPTO_SRC}/engine \ ${LCRYPTO_SRC}/err \ ${LCRYPTO_SRC}/evp \ + ${LCRYPTO_SRC}/gost \ ${LCRYPTO_SRC}/hmac \ ${LCRYPTO_SRC}/idea \ ${LCRYPTO_SRC}/krb5 \ @@ -346,6 +354,7 @@ HDRS=\ crypto/engine/engine.h \ crypto/err/err.h \ crypto/evp/evp.h \ + crypto/gost/gost.h \ crypto/hmac/hmac.h \ crypto/idea/idea.h \ crypto/krb5/krb5_asn.h \ |