File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ impl Cipher {
238
238
unsafe { CipherRef :: from_ptr ( ffi:: EVP_aes_192_cfb1 ( ) as * mut _ ) }
239
239
}
240
240
241
+ #[ cfg( not( boringssl) ) ]
241
242
pub fn aes_192_cfb128 ( ) -> & ' static CipherRef {
242
243
unsafe { CipherRef :: from_ptr ( ffi:: EVP_aes_192_cfb128 ( ) as * mut _ ) }
243
244
}
@@ -295,6 +296,7 @@ impl Cipher {
295
296
unsafe { CipherRef :: from_ptr ( ffi:: EVP_aes_256_cfb1 ( ) as * mut _ ) }
296
297
}
297
298
299
+ #[ cfg( not( boringssl) ) ]
298
300
pub fn aes_256_cfb128 ( ) -> & ' static CipherRef {
299
301
unsafe { CipherRef :: from_ptr ( ffi:: EVP_aes_256_cfb128 ( ) as * mut _ ) }
300
302
}
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ impl Cipher {
114
114
unsafe { Cipher ( ffi:: EVP_aes_128_cfb1 ( ) ) }
115
115
}
116
116
117
+ #[ cfg( not( boringssl) ) ]
117
118
pub fn aes_128_cfb128 ( ) -> Cipher {
118
119
unsafe { Cipher ( ffi:: EVP_aes_128_cfb128 ( ) ) }
119
120
}
@@ -159,6 +160,7 @@ impl Cipher {
159
160
unsafe { Cipher ( ffi:: EVP_aes_192_cfb1 ( ) ) }
160
161
}
161
162
163
+ #[ cfg( not( boringssl) ) ]
162
164
pub fn aes_192_cfb128 ( ) -> Cipher {
163
165
unsafe { Cipher ( ffi:: EVP_aes_192_cfb128 ( ) ) }
164
166
}
@@ -209,6 +211,7 @@ impl Cipher {
209
211
unsafe { Cipher ( ffi:: EVP_aes_256_cfb1 ( ) ) }
210
212
}
211
213
214
+ #[ cfg( not( boringssl) ) ]
212
215
pub fn aes_256_cfb128 ( ) -> Cipher {
213
216
unsafe { Cipher ( ffi:: EVP_aes_256_cfb128 ( ) ) }
214
217
}
You can’t perform that action at this time.
0 commit comments