File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ pub const PKCS5_SALT_LEN: c_int = 8;
7
7
pub const PKCS12_DEFAULT_ITER : c_int = 2048 ;
8
8
9
9
pub const EVP_PKEY_RSA : c_int = NID_rsaEncryption ;
10
- #[ cfg( any( openssl111 , boringssl) ) ]
10
+ #[ cfg( any( ossl111 , libressl310 , boringssl) ) ]
11
11
pub const EVP_PKEY_RSA_PSS : c_int = NID_rsassaPss ;
12
12
pub const EVP_PKEY_DSA : c_int = NID_dsa ;
13
13
pub const EVP_PKEY_DH : c_int = NID_dhKeyAgreement ;
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ pub struct Id(c_int);
78
78
79
79
impl Id {
80
80
pub const RSA : Id = Id ( ffi:: EVP_PKEY_RSA ) ;
81
- #[ cfg( any( openssl111 , boringssl) ) ]
81
+ #[ cfg( any( ossl111 , libressl310 , boringssl) ) ]
82
82
pub const RSA_PSS : Id = Id ( ffi:: EVP_PKEY_RSA_PSS ) ;
83
83
#[ cfg( not( boringssl) ) ]
84
84
pub const HMAC : Id = Id ( ffi:: EVP_PKEY_HMAC ) ;
You can’t perform that action at this time.
0 commit comments