Unverified Commit 7768e063 authored by Steven Fackler's avatar Steven Fackler
Browse files

Allow LibreSSL 3.4.x

parent 869cf7a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ jobs:
            - target: x86_64-unknown-linux-gnu
              library:
                name: libressl
                version: 3.4.1
                version: 3.4.2
      name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}
      runs-on: ubuntu-latest
      env:
+1 −1
Original line number Diff line number Diff line
@@ -253,7 +253,7 @@ See rust-openssl README for more information:
            (3, 3, 1) => ('3', '3', '1'),
            (3, 3, _) => ('3', '3', 'x'),
            (3, 4, 0) => ('3', '4', '0'),
            (3, 4, 1) => ('3', '4', '1'),
            (3, 4, _) => ('3', '4', 'x'),
            _ => version_error(),
        };

+1 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@
//! let pub_key: Vec<u8> = pkey.public_key_to_pem().unwrap();
//! println!("{:?}", str::from_utf8(pub_key.as_slice()).unwrap());
//! ```
#![allow(clippy::missing_safety_doc)]
use crate::bio::{MemBio, MemBioSlice};
#[cfg(ossl110)]
use crate::cipher::CipherRef;