From 3dd78a71553e3d9d12baf21abf5ffec0db07b879 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 5 Jul 2023 07:07:36 -0400 Subject: [PATCH] Expose Cipher::aes_128_gcm on boringssl --- openssl/src/cipher.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/openssl/src/cipher.rs b/openssl/src/cipher.rs index 8677886e1..d26b93c26 100644 --- a/openssl/src/cipher.rs +++ b/openssl/src/cipher.rs @@ -170,7 +170,6 @@ impl Cipher { unsafe { CipherRef::from_ptr(ffi::EVP_aes_128_cfb8() as *mut _) } } - #[cfg(not(boringssl))] pub fn aes_128_gcm() -> &'static CipherRef { unsafe { CipherRef::from_ptr(ffi::EVP_aes_128_gcm() as *mut _) } } -- GitLab