[][src]Struct picky_asn1_x509::algorithm_identifier::AlgorithmIdentifier

pub struct AlgorithmIdentifier { /* fields omitted */ }

Implementations

impl AlgorithmIdentifier[src]

pub fn oid(&self) -> &ObjectIdentifier[src]

pub fn parameters(&self) -> &AlgorithmIdentifierParameters[src]

pub fn is_a(&self, algorithm: ObjectIdentifier) -> bool[src]

pub fn new_sha1_with_rsa_encryption() -> Self[src]

pub fn new_sha224_with_rsa_encryption() -> Self[src]

pub fn new_sha256_with_rsa_encryption() -> Self[src]

pub fn new_sha384_with_rsa_encryption() -> Self[src]

pub fn new_sha512_with_rsa_encryption() -> Self[src]

pub fn new_sha3_384_with_rsa_encryption() -> Self[src]

pub fn new_sha3_512_with_rsa_encryption() -> Self[src]

pub fn new_rsa_encryption() -> Self[src]

pub fn new_ecdsa_with_sha384() -> Self[src]

pub fn new_ecdsa_with_sha256() -> Self[src]

pub fn new_elliptic_curve<P: Into<ECParameters>>(ec_params: P) -> Self[src]

pub fn new_ed25519() -> Self[src]

pub fn new_aes128(mode: AesMode, params: AESParameters) -> Self[src]

pub fn new_aes192(mode: AesMode, params: AESParameters) -> Self[src]

pub fn new_aes256(mode: AesMode, params: AESParameters) -> Self[src]

pub fn new_sha(variant: SHAVariant) -> Self[src]

Trait Implementations

impl Clone for AlgorithmIdentifier[src]

impl Debug for AlgorithmIdentifier[src]

impl<'de> Deserialize<'de> for AlgorithmIdentifier[src]

impl PartialEq<AlgorithmIdentifier> for AlgorithmIdentifier[src]

impl Serialize for AlgorithmIdentifier[src]

impl StructuralPartialEq for AlgorithmIdentifier[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.