• Home
  • Raw
  • Download

Lines Matching +full:libressl +full:- +full:git

1 diff --git a/src/cipher.rs b/src/cipher.rs
3 --- a/src/cipher.rs
5 @@ -350,11 +350,13 @@ impl Cipher {
10 pub fn bf_cfb64() -> &'static CipherRef {
16 pub fn bf_ofb() -> &'static CipherRef {
19 @@ -400,101 +402,121 @@ impl Cipher {
24 pub fn camellia128_cfb128() -> &'static CipherRef {
30 pub fn camellia128_ecb() -> &'static CipherRef {
36 pub fn camellia128_cbc() -> &'static CipherRef {
42 pub fn camellia128_ofb() -> &'static CipherRef {
48 pub fn camellia192_cfb128() -> &'static CipherRef {
54 pub fn camellia192_ecb() -> &'static CipherRef {
60 pub fn camellia192_cbc() -> &'static CipherRef {
66 pub fn camellia192_ofb() -> &'static CipherRef {
72 pub fn camellia256_cfb128() -> &'static CipherRef {
78 pub fn camellia256_ecb() -> &'static CipherRef {
84 pub fn camellia256_cbc() -> &'static CipherRef {
90 pub fn camellia256_ofb() -> &'static CipherRef {
96 pub fn cast5_cfb64() -> &'static CipherRef {
102 pub fn cast5_ecb() -> &'static CipherRef {
108 pub fn cast5_cbc() -> &'static CipherRef {
114 pub fn cast5_ofb() -> &'static CipherRef {
120 pub fn idea_cfb64() -> &'static CipherRef {
126 pub fn idea_ecb() -> &'static CipherRef {
132 pub fn idea_cbc() -> &'static CipherRef {
138 pub fn idea_ofb() -> &'static CipherRef {
141 @@ -510,21 +532,25 @@ impl Cipher {
146 pub fn seed_cbc() -> &'static CipherRef {
152 pub fn seed_cfb128() -> &'static CipherRef {
158 pub fn seed_ecb() -> &'static CipherRef {
164 pub fn seed_ofb() -> &'static CipherRef {
167 diff --git a/src/ec.rs b/src/ec.rs
169 --- a/src/ec.rs
171 @@ -196,6 +196,7 @@ impl EcGroupRef {
179 @@ -587,6 +588,7 @@ impl EcPointRef {
187 diff --git a/src/hash.rs b/src/hash.rs
189 --- a/src/hash.rs
191 @@ -158,6 +158,7 @@ impl MessageDigest {
196 pub fn ripemd160() -> MessageDigest {
199 diff --git a/src/lib.rs b/src/lib.rs
201 --- a/src/lib.rs
203 @@ -148,7 +148,7 @@ pub mod base64;
207 -#[cfg(all(not(libressl), not(osslconf = "OPENSSL_NO_CMS")))]
208 +#[cfg(all(not(libressl), not(osslconf = "OPENSSL_NO_CMS"), not(boringssl)))]
212 @@ -174,7 +174,7 @@ pub mod md;
216 -#[cfg(not(osslconf = "OPENSSL_NO_OCSP"))]
221 diff --git a/src/md.rs b/src/md.rs
223 --- a/src/md.rs
225 @@ -187,6 +187,7 @@ impl Md {
231 pub fn ripemd160() -> &'static MdRef {
233 diff --git a/src/symm.rs b/src/symm.rs
235 --- a/src/symm.rs
237 @@ -256,11 +256,13 @@ impl Cipher {
242 pub fn bf_cfb64() -> Cipher {
248 pub fn bf_ofb() -> Cipher {
251 @@ -306,81 +308,97 @@ impl Cipher {
256 pub fn camellia_128_cbc() -> Cipher {
262 pub fn camellia_128_ecb() -> Cipher {
268 pub fn camellia_128_ofb() -> Cipher {
274 pub fn camellia_128_cfb128() -> Cipher {
280 pub fn camellia_192_cbc() -> Cipher {
286 pub fn camellia_192_ecb() -> Cipher {
292 pub fn camellia_192_ofb() -> Cipher {
298 pub fn camellia_192_cfb128() -> Cipher {
304 pub fn camellia_256_cbc() -> Cipher {
310 pub fn camellia_256_ecb() -> Cipher {
316 pub fn camellia_256_ofb() -> Cipher {
322 pub fn camellia_256_cfb128() -> Cipher {
328 pub fn cast5_cbc() -> Cipher {
334 pub fn cast5_ecb() -> Cipher {
340 pub fn cast5_ofb() -> Cipher {
346 pub fn cast5_cfb64() -> Cipher {
349 @@ -398,41 +416,49 @@ impl Cipher {
354 pub fn idea_cbc() -> Cipher {
360 pub fn idea_ecb() -> Cipher {
366 pub fn idea_ofb() -> Cipher {
372 pub fn idea_cfb64() -> Cipher {
378 pub fn seed_cbc() -> Cipher {
384 pub fn seed_cfb128() -> Cipher {
390 pub fn seed_ecb() -> Cipher {
396 pub fn seed_ofb() -> Cipher {