blob: 995f3bdccc845d188d1df1d534f357c1f5b1be46 [file] [log] [blame]
#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
)]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
//! # Usage
//! The following example demonstrates how to use an OID as the `parameters`
//! of an [`AlgorithmIdentifier`].
//!
//! Borrow the [`ObjectIdentifier`] first then use [`der::AnyRef::from`] or `.into()`:
//!
//! ```
//! use spki::{AlgorithmIdentifier, ObjectIdentifier, der::AnyRef};
//!
//! let alg_oid = "1.2.840.10045.2.1".parse::<ObjectIdentifier>().unwrap();
//! let params_oid = "1.2.840.10045.3.1.7".parse::<ObjectIdentifier>().unwrap();
//!
//! let alg_id = AlgorithmIdentifier {
//! oid: alg_oid,
//! parameters: Some(AnyRef::from(&params_oid))
//! };
//! ```
#[cfg(feature = "alloc")]
#[allow(unused_extern_crates)]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
mod algorithm;
mod error;
mod spki;
mod traits;
#[cfg(feature = "fingerprint")]
mod fingerprint;
pub use crate::{
algorithm::AlgorithmIdentifier,
error::{Error, Result},
spki::SubjectPublicKeyInfo,
traits::DecodePublicKey,
};
pub use der::{self, asn1::ObjectIdentifier};
/// Local Android change: Use std to allow building as a dylib.
#[cfg(android_dylib)]
extern crate std;
#[cfg(feature = "alloc")]
pub use {crate::traits::EncodePublicKey, der::Document};
#[cfg(feature = "fingerprint")]
pub use crate::fingerprint::FingerprintBytes;