pub type CRYPT_RSA_SSA_PSS_PARAMETERS = _CRYPT_RSA_SSA_PSS_PARAMETERS;
Aliased Type§
struct CRYPT_RSA_SSA_PSS_PARAMETERS {
pub HashAlgorithm: _CRYPT_ALGORITHM_IDENTIFIER,
pub MaskGenAlgorithm: _CRYPT_MASK_GEN_ALGORITHM,
pub dwSaltLength: u32,
pub dwTrailerField: u32,
}
Fields§
§HashAlgorithm: _CRYPT_ALGORITHM_IDENTIFIER
§MaskGenAlgorithm: _CRYPT_MASK_GEN_ALGORITHM
§dwSaltLength: u32
§dwTrailerField: u32
Trait Implementations
Source§impl Clone for _CRYPT_RSA_SSA_PSS_PARAMETERS
impl Clone for _CRYPT_RSA_SSA_PSS_PARAMETERS
Source§fn clone(&self) -> _CRYPT_RSA_SSA_PSS_PARAMETERS
fn clone(&self) -> _CRYPT_RSA_SSA_PSS_PARAMETERS
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Ord for _CRYPT_RSA_SSA_PSS_PARAMETERS
impl Ord for _CRYPT_RSA_SSA_PSS_PARAMETERS
Source§fn cmp(&self, other: &_CRYPT_RSA_SSA_PSS_PARAMETERS) -> Ordering
fn cmp(&self, other: &_CRYPT_RSA_SSA_PSS_PARAMETERS) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _CRYPT_RSA_SSA_PSS_PARAMETERS
impl PartialEq for _CRYPT_RSA_SSA_PSS_PARAMETERS
Source§fn eq(&self, other: &_CRYPT_RSA_SSA_PSS_PARAMETERS) -> bool
fn eq(&self, other: &_CRYPT_RSA_SSA_PSS_PARAMETERS) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.