aboutsummaryrefslogtreecommitdiff
path: root/openssl/src/crypto/symm_internal.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-12-17 21:26:06 -0800
committerSteven Fackler <[email protected]>2015-12-17 21:26:06 -0800
commit6195bd4fd8a46ab62cbbc5f654c9743371722dc1 (patch)
tree0ccf253c93e6d4923c75ad51744e91dd1839f97f /openssl/src/crypto/symm_internal.rs
parentMerge branch 'release-v0.7.2' into release (diff)
parentRelease v0.7.3 (diff)
downloadrust-openssl-0.7.3.tar.xz
rust-openssl-0.7.3.zip
Merge branch 'release-v0.7.3' into releasev0.7.3
Diffstat (limited to 'openssl/src/crypto/symm_internal.rs')
-rw-r--r--openssl/src/crypto/symm_internal.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/src/crypto/symm_internal.rs b/openssl/src/crypto/symm_internal.rs
index fcb3ee71..5c457f3f 100644
--- a/openssl/src/crypto/symm_internal.rs
+++ b/openssl/src/crypto/symm_internal.rs
@@ -10,7 +10,7 @@ pub fn evpc(t: symm::Type) -> (*const ffi::EVP_CIPHER, u32, u32) {
symm::Type::AES_128_XTS => (ffi::EVP_aes_128_xts(), 32, 16),
#[cfg(feature = "aes_ctr")]
symm::Type::AES_128_CTR => (ffi::EVP_aes_128_ctr(), 16, 0),
- //AES_128_GCM => (EVP_aes_128_gcm(), 16, 16),
+ // AES_128_GCM => (EVP_aes_128_gcm(), 16, 16),
symm::Type::AES_128_CFB1 => (ffi::EVP_aes_128_cfb1(), 16, 16),
symm::Type::AES_128_CFB128 => (ffi::EVP_aes_128_cfb128(), 16, 16),
symm::Type::AES_128_CFB8 => (ffi::EVP_aes_128_cfb8(), 16, 16),
@@ -21,7 +21,7 @@ pub fn evpc(t: symm::Type) -> (*const ffi::EVP_CIPHER, u32, u32) {
symm::Type::AES_256_XTS => (ffi::EVP_aes_256_xts(), 64, 16),
#[cfg(feature = "aes_ctr")]
symm::Type::AES_256_CTR => (ffi::EVP_aes_256_ctr(), 32, 0),
- //AES_256_GCM => (EVP_aes_256_gcm(), 32, 16),
+ // AES_256_GCM => (EVP_aes_256_gcm(), 32, 16),
symm::Type::AES_256_CFB1 => (ffi::EVP_aes_256_cfb1(), 32, 16),
symm::Type::AES_256_CFB128 => (ffi::EVP_aes_256_cfb128(), 32, 16),
symm::Type::AES_256_CFB8 => (ffi::EVP_aes_256_cfb8(), 32, 16),