projects
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
acb4ab3
)
Fix error codes.
author
Bodo Möller
<bodo@openssl.org>
Mon, 5 Sep 2011 09:42:34 +0000
(09:42 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 5 Sep 2011 09:42:34 +0000
(09:42 +0000)
crypto/evp/e_aes.c
patch
|
blob
|
history
diff --git
a/crypto/evp/e_aes.c
b/crypto/evp/e_aes.c
index
25aff97
..
64a2f49
100644
(file)
--- a/
crypto/evp/e_aes.c
+++ b/
crypto/evp/e_aes.c
@@
-177,7
+177,7
@@
static int aesni_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
if(ret < 0)
{
if(ret < 0)
{
- EVPerr(EVP_F_AES_INIT_KEY,EVP_R_AES_KEY_SETUP_FAILED);
+ EVPerr(EVP_F_AES
NI
_INIT_KEY,EVP_R_AES_KEY_SETUP_FAILED);
return 0;
}
return 0;
}
@@
-474,7
+474,7
@@
static int aesni_xts_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
if (FIPS_module_mode() && !(ctx->flags & EVP_CIPH_FLAG_NON_FIPS_ALLOW) &&
(len > (1L<<20)*16))
{
if (FIPS_module_mode() && !(ctx->flags & EVP_CIPH_FLAG_NON_FIPS_ALLOW) &&
(len > (1L<<20)*16))
{
- EVPerr(EVP_F_AES
_XTS
, EVP_R_TOO_LARGE);
+ EVPerr(EVP_F_AES
NI_XTS_CIPHER
, EVP_R_TOO_LARGE);
return -1;
}
#endif
return -1;
}
#endif
@@
-1143,7
+1143,7
@@
static int aes_xts_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
if (FIPS_module_mode() && !(ctx->flags & EVP_CIPH_FLAG_NON_FIPS_ALLOW) &&
(len > (1L<<20)*16))
{
if (FIPS_module_mode() && !(ctx->flags & EVP_CIPH_FLAG_NON_FIPS_ALLOW) &&
(len > (1L<<20)*16))
{
- EVPerr(EVP_F_AES_XTS, EVP_R_TOO_LARGE);
+ EVPerr(EVP_F_AES_XTS
_CIPHER
, EVP_R_TOO_LARGE);
return -1;
}
#endif
return -1;
}
#endif