summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/err/err.c
diff options
context:
space:
mode:
authormiod <>2014-11-09 19:17:13 +0000
committermiod <>2014-11-09 19:17:13 +0000
commit35d7dd4666beda50f5094b8804802132fbe722ef (patch)
tree8f4747a1df4b007feca32e262b38052339c686c1 /src/lib/libcrypto/err/err.c
parentd92e6fdf5aae7a320effa3de769ce4c0378485c4 (diff)
downloadopenbsd-35d7dd4666beda50f5094b8804802132fbe722ef.tar.gz
openbsd-35d7dd4666beda50f5094b8804802132fbe722ef.tar.bz2
openbsd-35d7dd4666beda50f5094b8804802132fbe722ef.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/err/err.c')
-rw-r--r--src/lib/libcrypto/err/err.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/err/err.c b/src/lib/libcrypto/err/err.c
index 75a1d0181e..f06320247c 100644
--- a/src/lib/libcrypto/err/err.c
+++ b/src/lib/libcrypto/err/err.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: err.c,v 1.40 2014/10/05 15:21:48 deraadt Exp $ */ 1/* $OpenBSD: err.c,v 1.41 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 *
@@ -157,6 +157,7 @@ static ERR_STRING_DATA ERR_str_libraries[] = {
157 {ERR_PACK(ERR_LIB_FIPS,0,0), "FIPS routines"}, 157 {ERR_PACK(ERR_LIB_FIPS,0,0), "FIPS routines"},
158 {ERR_PACK(ERR_LIB_CMS,0,0), "CMS routines"}, 158 {ERR_PACK(ERR_LIB_CMS,0,0), "CMS routines"},
159 {ERR_PACK(ERR_LIB_HMAC,0,0), "HMAC routines"}, 159 {ERR_PACK(ERR_LIB_HMAC,0,0), "HMAC routines"},
160 {ERR_PACK(ERR_LIB_GOST,0,0), "GOST routines"},
160 {0, NULL}, 161 {0, NULL},
161}; 162};
162 163