summaryrefslogtreecommitdiffstats
path: root/engines/e_dasync_err.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-11-27 12:02:25 +0000
committerMatt Caswell <matt@openssl.org>2016-03-07 21:39:27 +0000
commit2f2c9caa727d7d2a5ce4bfb8266e019546ce77df (patch)
treebcdbf459fde470404abe7393c6f3cadff5736b7a /engines/e_dasync_err.c
parent032c6d21fc53d5ec8b7ef78b0997627d1d240dad (diff)
Add dummy pipeline support for aes128_cbc_hmac_sha1
Add dummy pipline support to dasync for the aes128_cbc_hmac_sha1 cipher. This is treated as an AEAD cipher. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'engines/e_dasync_err.c')
-rw-r--r--engines/e_dasync_err.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/e_dasync_err.c b/engines/e_dasync_err.c
index 570a54ed37..ed5e98ee3f 100644
--- a/engines/e_dasync_err.c
+++ b/engines/e_dasync_err.c
@@ -1,5 +1,5 @@
/* ====================================================================
- * Copyright (c) 1999-2015 The OpenSSL Project. All rights reserved.
+ * Copyright (c) 1999-2016 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -69,9 +69,11 @@
# define ERR_REASON(reason) ERR_PACK(0,0,reason)
static ERR_STRING_DATA DASYNC_str_functs[] = {
- {ERR_FUNC(DASYNC_F_BIND_DASYNC), "BIND_DASYNC"},
+ {ERR_FUNC(DASYNC_F_BIND_DASYNC), "bind_dasync"},
{ERR_FUNC(DASYNC_F_CIPHER_AES_128_CBC_CODE), "CIPHER_AES_128_CBC_CODE"},
- {ERR_FUNC(DASYNC_F_DASYNC_AES128_INIT_KEY), "DASYNC_AES128_INIT_KEY"},
+ {ERR_FUNC(DASYNC_F_DASYNC_AES128_CBC_HMAC_SHA1_INIT_KEY),
+ "dasync_aes128_cbc_hmac_sha1_init_key"},
+ {ERR_FUNC(DASYNC_F_DASYNC_AES128_INIT_KEY), "dasync_aes128_init_key"},
{ERR_FUNC(DASYNC_F_DASYNC_BN_MOD_EXP), "DASYNC_BN_MOD_EXP"},
{ERR_FUNC(DASYNC_F_DASYNC_MOD_EXP), "DASYNC_MOD_EXP"},
{ERR_FUNC(DASYNC_F_DASYNC_PRIVATE_DECRYPT), "DASYNC_PRIVATE_DECRYPT"},