Enum ipsec_parser::IkeV2Transform [] [src]

pub enum IkeV2Transform {
    Encryption(IkeTransformEncType),
    PRF(IkeTransformPRFType),
    Auth(IkeTransformAuthType),
    DH(IkeTransformDHType),
    ESN(IkeTransformESNType),
    Unknown(IkeTransformTypeu16),
}

IKEv2 Transform (cryptographic algorithm)

This structure is a simple representation of a transform, containing only the type (encryption, etc.). To store the parameters, use IkeV2RawTransform.

Defined in RFC7296 section 3.3

Variants

Unknown tranform (type,id)

Trait Implementations

impl Debug for IkeV2Transform
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for IkeV2Transform
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> From<&'a IkeV2RawTransform<'a>> for IkeV2Transform
[src]

[src]

Performs the conversion.

impl<'a> From<IkeV2RawTransform<'a>> for IkeV2Transform
[src]

[src]

Performs the conversion.