[openssl-commits] [openssl] master update
Andy Polyakov
appro at openssl.org
Thu Feb 12 18:27:18 UTC 2015
The branch master has been updated
via 2b8f33a5741e5c6eab5053140a79673bf972bc13 (commit)
from b0333e697c008d639c56f48e9148cb8cba957e32 (commit)
- Log -----------------------------------------------------------------
commit 2b8f33a5741e5c6eab5053140a79673bf972bc13
Author: Andy Polyakov <appro at openssl.org>
Date: Thu Feb 12 19:26:37 2015 +0100
evp/evp.h: add missing camellia-ctr declarations.
Reviewed-by: Matt Caswell <matt at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
crypto/evp/evp.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index f12e866..0dbd420 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -909,6 +909,7 @@ const EVP_CIPHER *EVP_camellia_128_cfb8(void);
const EVP_CIPHER *EVP_camellia_128_cfb128(void);
# define EVP_camellia_128_cfb EVP_camellia_128_cfb128
const EVP_CIPHER *EVP_camellia_128_ofb(void);
+const EVP_CIPHER *EVP_camellia_128_ctr(void);
const EVP_CIPHER *EVP_camellia_192_ecb(void);
const EVP_CIPHER *EVP_camellia_192_cbc(void);
const EVP_CIPHER *EVP_camellia_192_cfb1(void);
@@ -916,6 +917,7 @@ const EVP_CIPHER *EVP_camellia_192_cfb8(void);
const EVP_CIPHER *EVP_camellia_192_cfb128(void);
# define EVP_camellia_192_cfb EVP_camellia_192_cfb128
const EVP_CIPHER *EVP_camellia_192_ofb(void);
+const EVP_CIPHER *EVP_camellia_192_ctr(void);
const EVP_CIPHER *EVP_camellia_256_ecb(void);
const EVP_CIPHER *EVP_camellia_256_cbc(void);
const EVP_CIPHER *EVP_camellia_256_cfb1(void);
@@ -923,6 +925,7 @@ const EVP_CIPHER *EVP_camellia_256_cfb8(void);
const EVP_CIPHER *EVP_camellia_256_cfb128(void);
# define EVP_camellia_256_cfb EVP_camellia_256_cfb128
const EVP_CIPHER *EVP_camellia_256_ofb(void);
+const EVP_CIPHER *EVP_camellia_256_ctr(void);
# endif
# ifndef OPENSSL_NO_SEED
More information about the openssl-commits
mailing list