aws_lc_rs::rsa::signature

Struct RsaParameters

Source
pub struct RsaParameters(&'static Algorithm, &'static RsaPadding, RangeInclusive<u32>, &'static RsaVerificationAlgorithmId);
Expand description

Parameters for RSA verification.

Tuple Fields§

§0: &'static Algorithm§1: &'static RsaPadding§2: RangeInclusive<u32>§3: &'static RsaVerificationAlgorithmId

Implementations§

Source§

impl RsaParameters

Source

pub(crate) fn digest_algorithm(&self) -> &'static Algorithm

Source

pub(crate) fn padding(&self) -> &'static RsaPadding

Source

pub(crate) fn bit_size_range(&self) -> &RangeInclusive<u32>

Source§

impl RsaParameters

Source

pub(crate) const fn new( digest_alg: &'static Algorithm, padding: &'static RsaPadding, range: RangeInclusive<u32>, verification_alg: &'static RsaVerificationAlgorithmId, ) -> Self

Source

pub fn public_modulus_len(public_key: &[u8]) -> Result<u32, Unspecified>

Parses a DER-encoded RSAPublicKey structure (RFC 8017) to determine its size in bits.

§Errors

error::Unspecified on parse error.

Source

pub fn min_modulus_len(&self) -> u32

Minimum modulus length in bits.

Source

pub fn max_modulus_len(&self) -> u32

Maximum modulus length in bits.

Trait Implementations§

Source§

impl Debug for RsaParameters

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl VerificationAlgorithm for RsaParameters

Source§

fn verify_sig( &self, public_key: &[u8], msg: &[u8], signature: &[u8], ) -> Result<(), Unspecified>

Verify the signature signature of message msg with the public key public_key. Read more
Source§

impl Sealed for RsaParameters

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.