aws-lc-rs 1.0.2

aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.
Documentation
// Copyright 2018 Brian Smith.
// SPDX-License-Identifier: ISC
// Modifications copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0 OR ISC

//! Serialization and deserialization.

#[doc(hidden)]
pub mod der;

#[cfg(feature = "alloc")]
mod writer;

#[cfg(feature = "alloc")]
pub(crate) mod der_writer;

pub(crate) mod positive;

pub use self::positive::Positive;