mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Use existing OpenSSL functionalities to create PEM files containing arbitrary data. Acked-by: Marc Hartmayer <marc@linux.ibm.com> Acked-by: Christoph Schlameuss <schlameuss@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
16 lines
219 B
Rust
16 lines
219 B
Rust
// SPDX-License-Identifier: MIT
|
|
//
|
|
// Copyright IBM Corp. 2024
|
|
|
|
#![doc(hidden)]
|
|
|
|
/// Extensions to the rust-openssl crate
|
|
mod akid;
|
|
mod bio;
|
|
mod crl;
|
|
mod stackable_crl;
|
|
|
|
pub use akid::*;
|
|
pub use bio::*;
|
|
pub use crl::*;
|