Struct kmip_protocol::types::common::CryptographicParameters [−][src]
pub struct CryptographicParameters {Show 13 fields
pub block_cipher_mode: Option<BlockCipherMode>,
pub padding_method: Option<PaddingMethod>,
pub hashing_algorithm: Option<HashingAlgorithm>,
pub key_role_type: Option<KeyRoleType>,
pub digital_signature_algorithm: Option<DigitalSignatureAlgorithm>,
pub cryptographic_algorithm: Option<CryptographicAlgorithm>,
pub random_iv: Option<RandomIV>,
pub iv_length: Option<IVLength>,
pub tag_length: Option<TagLength>,
pub fixed_field_length: Option<FixedFieldLength>,
pub invocation_field_length: Option<InvocationFieldLength>,
pub counter_length: Option<CounterLength>,
pub initial_counter_value: Option<InitialCounterValue>,
}
Expand description
See KMIP 1.0 section 3.6 Cryptographic Parameters.
Fields
block_cipher_mode: Option<BlockCipherMode>
padding_method: Option<PaddingMethod>
hashing_algorithm: Option<HashingAlgorithm>
key_role_type: Option<KeyRoleType>
digital_signature_algorithm: Option<DigitalSignatureAlgorithm>
cryptographic_algorithm: Option<CryptographicAlgorithm>
random_iv: Option<RandomIV>
iv_length: Option<IVLength>
tag_length: Option<TagLength>
fixed_field_length: Option<FixedFieldLength>
invocation_field_length: Option<InvocationFieldLength>
counter_length: Option<CounterLength>
initial_counter_value: Option<InitialCounterValue>
Implementations
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CryptographicParameters
impl Send for CryptographicParameters
impl Sync for CryptographicParameters
impl Unpin for CryptographicParameters
impl UnwindSafe for CryptographicParameters
Blanket Implementations
Mutably borrows from an owned value. Read more