summaryrefslogtreecommitdiffstats
path: root/providers
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-04-10 12:40:59 +1000
committerPauli <pauli@openssl.org>2021-04-12 14:59:09 +1000
commite3c2a55d470a313c2fc5f2fb625c086d0cb953ea (patch)
tree7ffae186ec9d9591bc41478e39624bea63337298 /providers
parentb1c908f421b3466aecf980603132bcab89d1ce99 (diff)
Add additional KMAC error
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14810)
Diffstat (limited to 'providers')
-rw-r--r--providers/common/provider_err.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/providers/common/provider_err.c b/providers/common/provider_err.c
index 30574f4c6c..dd1a98f935 100644
--- a/providers/common/provider_err.c
+++ b/providers/common/provider_err.c
@@ -110,6 +110,7 @@ static const ERR_STRING_DATA PROV_str_reasons[] = {
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_KEY_SETUP_FAILED), "key setup failed"},
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_KEY_SIZE_TOO_SMALL),
"key size too small"},
+ {ERR_PACK(ERR_LIB_PROV, 0, PROV_R_LENGTH_TOO_LARGE), "length too large"},
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_MISSING_CEK_ALG), "missing cek alg"},
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_MISSING_CIPHER), "missing cipher"},
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_MISSING_CONFIG_DATA),