diff options
author | tb <> | 2021-03-29 15:57:23 +0000 |
---|---|---|
committer | tb <> | 2021-03-29 15:57:23 +0000 |
commit | d9dfab150e9c80a3bafbf4effd23e943ab9ba197 (patch) | |
tree | bf7d2d4408b27c2ebee7a4c8281f8986c9add8a9 /src/lib/libcrypto/evp/evp_err.c | |
parent | 2e8ea05ba51067fc5bc08b0749d727cb74a13b62 (diff) | |
download | openbsd-d9dfab150e9c80a3bafbf4effd23e943ab9ba197.tar.gz openbsd-d9dfab150e9c80a3bafbf4effd23e943ab9ba197.tar.bz2 openbsd-d9dfab150e9c80a3bafbf4effd23e943ab9ba197.zip |
Prepare to provide EVP_PKEY_new_CMAC_key()
sebastia ran into this when attempting to update security/hcxtools.
This will be tested via wycheproof.go once the symbol is public.
ok jsing, tested by sebastia
Diffstat (limited to 'src/lib/libcrypto/evp/evp_err.c')
-rw-r--r-- | src/lib/libcrypto/evp/evp_err.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/evp_err.c b/src/lib/libcrypto/evp/evp_err.c index 2494cf5790..07ece82c3a 100644 --- a/src/lib/libcrypto/evp/evp_err.c +++ b/src/lib/libcrypto/evp/evp_err.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp_err.c,v 1.26 2020/04/27 19:31:02 tb Exp $ */ | 1 | /* $OpenBSD: evp_err.c,v 1.27 2021/03/29 15:57:23 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1999-2011 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1999-2011 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -116,6 +116,7 @@ static ERR_STRING_DATA EVP_str_reasons[] = { | |||
116 | {ERR_REASON(EVP_R_INVALID_OPERATION) , "invalid operation"}, | 116 | {ERR_REASON(EVP_R_INVALID_OPERATION) , "invalid operation"}, |
117 | {ERR_REASON(EVP_R_IV_TOO_LARGE) , "iv too large"}, | 117 | {ERR_REASON(EVP_R_IV_TOO_LARGE) , "iv too large"}, |
118 | {ERR_REASON(EVP_R_KEYGEN_FAILURE) , "keygen failure"}, | 118 | {ERR_REASON(EVP_R_KEYGEN_FAILURE) , "keygen failure"}, |
119 | {ERR_REASON(EVP_R_KEY_SETUP_FAILED) , "key setup failed"}, | ||
119 | {ERR_REASON(EVP_R_MESSAGE_DIGEST_IS_NULL), "message digest is null"}, | 120 | {ERR_REASON(EVP_R_MESSAGE_DIGEST_IS_NULL), "message digest is null"}, |
120 | {ERR_REASON(EVP_R_METHOD_NOT_SUPPORTED) , "method not supported"}, | 121 | {ERR_REASON(EVP_R_METHOD_NOT_SUPPORTED) , "method not supported"}, |
121 | {ERR_REASON(EVP_R_MISSING_PARAMETERS) , "missing parameters"}, | 122 | {ERR_REASON(EVP_R_MISSING_PARAMETERS) , "missing parameters"}, |