diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-04-02 18:51:10 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-04-02 18:51:10 +0000 |
commit | 97da3d2de03fc866ddd0659aa7e7a6a268741f1a (patch) | |
tree | aafbd7b1a56792f67163fd50fdd8cf1fb50ef90b /src/libcrypto/libaes/aes_cbc.h | |
parent | 7a9d3ae4719500e416261ba668c9b2dcc94569dc (diff) | |
download | strongswan-97da3d2de03fc866ddd0659aa7e7a6a268741f1a.tar.bz2 strongswan-97da3d2de03fc866ddd0659aa7e7a6a268741f1a.tar.xz |
renamed AES_cbc_encrypt to SS_AES_cbc_encrypt due to name collision with OpenSSL library
Diffstat (limited to 'src/libcrypto/libaes/aes_cbc.h')
-rw-r--r-- | src/libcrypto/libaes/aes_cbc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcrypto/libaes/aes_cbc.h b/src/libcrypto/libaes/aes_cbc.h index 92f5d77f5..65015da6e 100644 --- a/src/libcrypto/libaes/aes_cbc.h +++ b/src/libcrypto/libaes/aes_cbc.h @@ -1,4 +1,4 @@ /* Glue header */ #include "aes.h" -int AES_set_key(aes_context *aes_ctx, const u_int8_t * key, int keysize); -int AES_cbc_encrypt(aes_context *ctx, const u_int8_t * in, u_int8_t * out, int ilen, const u_int8_t * iv, int encrypt); +int SS_AES_set_key(aes_context *aes_ctx, const u_int8_t * key, int keysize); +int SS_AES_cbc_encrypt(aes_context *ctx, const u_int8_t * in, u_int8_t * out, int ilen, const u_int8_t * iv, int encrypt); |