1#![no_std]
2#![cfg_attr(docsrs, feature(doc_auto_cfg))]
3#![doc = include_str!("../README.md")]
4#![doc(
5 html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
6 html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
7)]
8#![forbid(unsafe_code)]
9#![warn(
10 clippy::mod_module_files,
11 clippy::unwrap_used,
12 missing_docs,
13 rust_2018_idioms,
14 unused_lifetimes,
15 unused_qualifications
16)]
17
18#[cfg(feature = "alloc")]
19extern crate alloc;
20#[cfg(feature = "std")]
21extern crate std;
22
23mod error;
24mod params;
25mod private_key;
26mod public_key;
27mod traits;
28mod version;
29
30pub use der::{
31 self,
32 asn1::{ObjectIdentifier, UintRef},
33};
34
35pub use crate::{
36 error::{Error, Result},
37 params::{RsaOaepParams, RsaPssParams, TrailerField},
38 private_key::RsaPrivateKey,
39 public_key::RsaPublicKey,
40 traits::{DecodeRsaPrivateKey, DecodeRsaPublicKey},
41 version::Version,
42};
43
44#[cfg(feature = "alloc")]
45pub use crate::{
46 private_key::{other_prime_info::OtherPrimeInfo, OtherPrimeInfos},
47 traits::{EncodeRsaPrivateKey, EncodeRsaPublicKey},
48};
49
50#[cfg(feature = "pem")]
51pub use der::pem::{self, LineEnding};
52
53#[cfg(feature = "pkcs8")]
55pub const ALGORITHM_OID: ObjectIdentifier = ObjectIdentifier::new_unwrap("1.2.840.113549.1.1.1");
56
57#[cfg(feature = "pkcs8")]
59pub const ALGORITHM_ID: pkcs8::AlgorithmIdentifierRef<'static> = pkcs8::AlgorithmIdentifierRef {
60 oid: ALGORITHM_OID,
61 parameters: Some(der::asn1::AnyRef::NULL),
62};