diff options
author | jsing <> | 2022-11-10 15:17:30 +0000 |
---|---|---|
committer | jsing <> | 2022-11-10 15:17:30 +0000 |
commit | 6c2e8d35e6420143135582b6d9c17cdef89fcfde (patch) | |
tree | 68f3eb652b8c2de8493a896f4224c61a7d0ba2bb /src/lib/libcrypto/evp/evp_err.c | |
parent | 9e517a7080ced5cb4fbcab5fa72fa8568a60ea2a (diff) | |
download | openbsd-6c2e8d35e6420143135582b6d9c17cdef89fcfde.tar.gz openbsd-6c2e8d35e6420143135582b6d9c17cdef89fcfde.tar.bz2 openbsd-6c2e8d35e6420143135582b6d9c17cdef89fcfde.zip |
Provide digestsign/digestverify hooks for EVP_PKEY_METHOD.
These are needed for EVP implementations of Ed25519 and X25519.
ok beck@ tb@
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 109d2d4b2e..9cf89f47fb 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.29 2022/11/10 14:46:44 jsing Exp $ */ | 1 | /* $OpenBSD: evp_err.c,v 1.30 2022/11/10 15:17:30 jsing 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 | * |
@@ -123,6 +123,7 @@ static ERR_STRING_DATA EVP_str_reasons[] = { | |||
123 | {ERR_REASON(EVP_R_NO_OPERATION_SET) , "no operation set"}, | 123 | {ERR_REASON(EVP_R_NO_OPERATION_SET) , "no operation set"}, |
124 | {ERR_REASON(EVP_R_NO_SIGN_FUNCTION_CONFIGURED), "no sign function configured"}, | 124 | {ERR_REASON(EVP_R_NO_SIGN_FUNCTION_CONFIGURED), "no sign function configured"}, |
125 | {ERR_REASON(EVP_R_NO_VERIFY_FUNCTION_CONFIGURED), "no verify function configured"}, | 125 | {ERR_REASON(EVP_R_NO_VERIFY_FUNCTION_CONFIGURED), "no verify function configured"}, |
126 | {ERR_REASON(EVP_R_ONLY_ONESHOT_SUPPORTED), "only oneshot supported"}, | ||
126 | {ERR_REASON(EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE), "operation not supported for this keytype"}, | 127 | {ERR_REASON(EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE), "operation not supported for this keytype"}, |
127 | {ERR_REASON(EVP_R_OPERATON_NOT_INITIALIZED), "operaton not initialized"}, | 128 | {ERR_REASON(EVP_R_OPERATON_NOT_INITIALIZED), "operaton not initialized"}, |
128 | {ERR_REASON(EVP_R_OUTPUT_ALIASES_INPUT) , "output aliases input"}, | 129 | {ERR_REASON(EVP_R_OUTPUT_ALIASES_INPUT) , "output aliases input"}, |