#![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)]
#![warn(
clippy::mod_module_files,
clippy::cast_lossless,
clippy::cast_possible_truncation,
clippy::cast_possible_wrap,
clippy::cast_precision_loss,
clippy::cast_sign_loss,
clippy::checked_conversions,
clippy::implicit_saturating_sub,
clippy::arithmetic_side_effects,
clippy::panic,
clippy::panic_in_result_fn,
clippy::unwrap_used,
missing_docs,
rust_2018_idioms,
unused_lifetimes,
unused_qualifications
)]
#[cfg(feature = "alloc")]
#[allow(unused_extern_crates)]
extern crate alloc;
pub use elliptic_curve::{self, bigint::U256};
use elliptic_curve::{
Error, FieldBytesEncoding,
bigint::{ArrayEncoding, Odd},
consts::U32,
};
#[cfg(feature = "arithmetic")]
pub use {
arithmetic::{AffinePoint, ProjectivePoint, scalar::Scalar},
public_key::PublicKey,
secret_key::SecretKey,
};
pub type Result<T> = core::result::Result<T, Error>;
#[cfg(feature = "arithmetic")]
pub mod arithmetic;
#[cfg(any(feature = "test-vectors", test))]
pub mod test_vectors;
#[cfg(feature = "ecdh")]
pub mod ecdh;
#[cfg(feature = "ecdsa")]
pub mod ecdsa;
#[cfg(feature = "arithmetic")]
pub mod public_key;
#[cfg(feature = "arithmetic")]
pub mod secret_key;
#[cfg(feature = "pkcs8")]
#[allow(dead_code)]
const ALGORITHM_OID: pkcs8::ObjectIdentifier =
pkcs8::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.2.1");
#[cfg(feature = "ecdsa")]
type Hash = digest::Output<belt_hash::BeltHash>;
const ORDER_HEX: &str = "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD95C8ED60DFB4DFC7E5ABF99263D6607";
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, PartialOrd, Ord)]
pub struct BignP256;
impl elliptic_curve::Curve for BignP256 {
type FieldBytesSize = U32;
type Uint = U256;
const ORDER: Odd<U256> = Odd::<U256>::from_be_hex(ORDER_HEX);
}
impl elliptic_curve::PrimeCurve for BignP256 {}
impl elliptic_curve::point::PointCompression for BignP256 {
const COMPRESS_POINTS: bool = false;
}
impl elliptic_curve::point::PointCompaction for BignP256 {
const COMPACT_POINTS: bool = false;
}
#[cfg(feature = "pkcs8")]
impl pkcs8::AssociatedOid for BignP256 {
const OID: pkcs8::ObjectIdentifier =
pkcs8::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.3.1");
}
pub type FieldBytes = elliptic_curve::FieldBytes<BignP256>;
pub type Sec1Point = elliptic_curve::sec1::Sec1Point<BignP256>;
impl FieldBytesEncoding<BignP256> for U256 {
fn decode_field_bytes(field_bytes: &FieldBytes) -> Self {
U256::from_le_byte_array(*field_bytes)
}
fn encode_field_bytes(&self) -> FieldBytes {
self.to_le_byte_array()
}
}
#[cfg(feature = "arithmetic")]
pub type NonZeroScalar = elliptic_curve::NonZeroScalar<BignP256>;
#[cfg(feature = "arithmetic")]
pub type ScalarValue = elliptic_curve::ScalarValue<BignP256>;