• Home
  • Raw
  • Download

Lines Matching +full:libressl +full:- +full:version

1 diff --git a/.cargo/config.toml b/.cargo/config.toml
4 --- /dev/null
6 @@ -0,0 +1,2 @@
7 +[patch.crates-io]
8 +bssl-sys = { version = "0.1.0", path = "../../../boringssl/src/rust/bssl-sys", optional=true }
9 diff --git a/src/cipher.rs b/src/cipher.rs
11 --- a/src/cipher.rs
13 @@ -208,6 +208,7 @@ impl Cipher {
18 pub fn aes_192_cfb128() -> &'static CipherRef {
21 @@ -253,6 +254,7 @@ impl Cipher {
26 pub fn aes_256_cfb128() -> &'static CipherRef {
29 @@ -282,11 +284,13 @@ impl Cipher {
34 pub fn bf_cbc() -> &'static CipherRef {
40 pub fn bf_ecb() -> &'static CipherRef {
43 diff --git a/src/encrypt.rs b/src/encrypt.rs
45 --- a/src/encrypt.rs
47 @@ -148,7 +148,7 @@ impl<'a> Encrypter<'a> {
51 - #[cfg(any(ossl102, libressl310))]
53 pub fn set_rsa_oaep_md(&mut self, md: MessageDigest) -> Result<(), ErrorStack> {
56 @@ -352,7 +352,7 @@ impl<'a> Decrypter<'a> {
60 - #[cfg(any(ossl102, libressl310))]
62 pub fn set_rsa_oaep_md(&mut self, md: MessageDigest) -> Result<(), ErrorStack> {
65 diff --git a/src/lib.rs b/src/lib.rs
67 --- a/src/lib.rs
69 @@ -120,6 +120,9 @@
79 @@ -155,6 +158,10 @@ pub mod ex_data;
80 #[cfg(not(any(libressl, ossl300)))]
90 diff --git a/src/symm.rs b/src/symm.rs
92 --- a/src/symm.rs
94 @@ -119,6 +119,7 @@ impl Cipher {
99 pub fn aes_128_cfb128() -> Cipher {
102 @@ -164,6 +165,7 @@ impl Cipher {
107 pub fn aes_192_cfb128() -> Cipher {
110 @@ -214,6 +216,7 @@ impl Cipher {
115 pub fn aes_256_cfb128() -> Cipher {
118 @@ -242,12 +245,12 @@ impl Cipher {
122 - #[cfg(not(osslconf = "OPENSSL_NO_BF"))]
124 pub fn bf_cbc() -> Cipher {
128 - #[cfg(not(osslconf = "OPENSSL_NO_BF"))]
130 pub fn bf_ecb() -> Cipher {