@@ -396,23 +396,33 @@ extern "C" {
396
396
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAMELLIA" ) ) ) ]
397
397
pub fn EVP_camellia_128_ecb ( ) -> * const EVP_CIPHER ;
398
398
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAMELLIA" ) ) ) ]
399
+ pub fn EVP_camellia_128_cbc ( ) -> * const EVP_CIPHER ;
400
+ #[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAMELLIA" ) ) ) ]
399
401
pub fn EVP_camellia_192_cfb128 ( ) -> * const EVP_CIPHER ;
400
402
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAMELLIA" ) ) ) ]
401
403
pub fn EVP_camellia_192_ecb ( ) -> * const EVP_CIPHER ;
402
404
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAMELLIA" ) ) ) ]
405
+ pub fn EVP_camellia_192_cbc ( ) -> * const EVP_CIPHER ;
406
+ #[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAMELLIA" ) ) ) ]
403
407
pub fn EVP_camellia_256_cfb128 ( ) -> * const EVP_CIPHER ;
404
408
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAMELLIA" ) ) ) ]
405
409
pub fn EVP_camellia_256_ecb ( ) -> * const EVP_CIPHER ;
410
+ #[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAMELLIA" ) ) ) ]
411
+ pub fn EVP_camellia_256_cbc ( ) -> * const EVP_CIPHER ;
406
412
407
413
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAST" ) ) ) ]
408
414
pub fn EVP_cast5_cfb64 ( ) -> * const EVP_CIPHER ;
409
415
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAST" ) ) ) ]
410
416
pub fn EVP_cast5_ecb ( ) -> * const EVP_CIPHER ;
417
+ #[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_CAST" ) ) ) ]
418
+ pub fn EVP_cast5_cbc ( ) -> * const EVP_CIPHER ;
411
419
412
420
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_IDEA" ) ) ) ]
413
421
pub fn EVP_idea_cfb64 ( ) -> * const EVP_CIPHER ;
414
422
#[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_IDEA" ) ) ) ]
415
423
pub fn EVP_idea_ecb ( ) -> * const EVP_CIPHER ;
424
+ #[ cfg( not( any( boringssl, osslconf = "OPENSSL_NO_IDEA" ) ) ) ]
425
+ pub fn EVP_idea_cbc ( ) -> * const EVP_CIPHER ;
416
426
417
427
#[ cfg( not( ossl110) ) ]
418
428
pub fn OPENSSL_add_all_algorithms_noconf ( ) ;
0 commit comments