#[non_exhaustive]
pub enum AsymmetricAlgorithm {
Show 20 variants RSA1024, RSA2048, RSA3072, RSA4096, ElGamal1024, ElGamal2048, ElGamal3072, ElGamal4096, DSA1024, DSA2048, DSA3072, DSA4096, NistP256, NistP384, NistP521, BrainpoolP256, BrainpoolP384, BrainpoolP512, Cv25519, Unknown,
}
Expand description

Asymmetric encryption algorithms.

This type is for refining the StandardPolicy with respect to asymmetric algorithms. In contrast to PublicKeyAlgorithm, it does not concern itself with the use (encryption or signing), and it does include key sizes (if applicable) and elliptic curves.

Key sizes put into are buckets, rounding down to the nearest bucket. For example, a 3253-bit RSA key is categorized as RSA3072.

Note: This enum cannot be exhaustively matched to allow future extensions.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

RSA1024

RSA with key sizes up to 2048-1 bit.

§

RSA2048

RSA with key sizes up to 3072-1 bit.

§

RSA3072

RSA with key sizes up to 4096-1 bit.

§

RSA4096

RSA with key sizes larger or equal to 4096 bit.

§

ElGamal1024

ElGamal with key sizes up to 2048-1 bit.

§

ElGamal2048

ElGamal with key sizes up to 3072-1 bit.

§

ElGamal3072

ElGamal with key sizes up to 4096-1 bit.

§

ElGamal4096

ElGamal with key sizes larger or equal to 4096 bit.

§

DSA1024

DSA with key sizes up to 2048-1 bit.

§

DSA2048

DSA with key sizes up to 3072-1 bit.

§

DSA3072

DSA with key sizes up to 4096-1 bit.

§

DSA4096

DSA with key sizes larger or equal to 4096 bit.

§

NistP256

NIST curve P-256.

§

NistP384

NIST curve P-384.

§

NistP521

NIST curve P-521.

§

BrainpoolP256

brainpoolP256r1.

§

BrainpoolP384

brainpoolP384r1.

§

BrainpoolP512

brainpoolP512r1.

§

Cv25519

D.J. Bernstein’s Curve25519.

§

Unknown

Unknown algorithm.

Implementations§

source§

impl AsymmetricAlgorithm

source

pub fn variants() -> impl Iterator<Item = AsymmetricAlgorithm>

Returns an iterator over all valid variants.

Returns an iterator over all known variants. This does not include the AsymmetricAlgorithm::Unknown variant.

Trait Implementations§

source§

impl Clone for AsymmetricAlgorithm

source§

fn clone(&self) -> AsymmetricAlgorithm

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AsymmetricAlgorithm

source§

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

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

impl Display for AsymmetricAlgorithm

source§

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

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

impl From<AsymmetricAlgorithm> for u8

source§

fn from(a: AsymmetricAlgorithm) -> Self

Converts to this type from the input type.
source§

impl PartialEq<AsymmetricAlgorithm> for AsymmetricAlgorithm

source§

fn eq(&self, other: &AsymmetricAlgorithm) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for AsymmetricAlgorithm

source§

impl Eq for AsymmetricAlgorithm

source§

impl StructuralEq for AsymmetricAlgorithm

source§

impl StructuralPartialEq for AsymmetricAlgorithm

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.