Struct kerberos_parser::krb5::EncryptionType[][src]

pub struct EncryptionType(pub i32);

Encryption type

Methods

impl EncryptionType
[src]

DES_CBC_CRC: EncryptionType = EncryptionType(1)

DES_CBC_MD4: EncryptionType = EncryptionType(2)

DES_CBC_MD5: EncryptionType = EncryptionType(3)

DES3_CBC_MD5: EncryptionType = EncryptionType(5)

DES3_CBC_SHA1: EncryptionType = EncryptionType(7)

DSAWITHSHA1_CMSOID: EncryptionType = EncryptionType(9)

MD5WITHRSAENCRYPTION_CMSOID: EncryptionType = EncryptionType(10)

SHA1WITHRSAENCRYPTION_CMSOID: EncryptionType = EncryptionType(11)

RC2CBC_ENVOID: EncryptionType = EncryptionType(12)

RSAENCRYPTION_ENVOID: EncryptionType = EncryptionType(13)

RSAES_OAEP_ENV_OID: EncryptionType = EncryptionType(14)

DES_EDE3_CBC_ENV_OID: EncryptionType = EncryptionType(15)

DES3_CBC_SHA1_KD: EncryptionType = EncryptionType(16)

AES128_CTS_HMAC_SHA1_96: EncryptionType = EncryptionType(17)

AES256_CTS_HMAC_SHA1_96: EncryptionType = EncryptionType(18)

AES128_CTS_HMAC_SHA256_128: EncryptionType = EncryptionType(19)

AES256_CTS_HMAC_SHA384_192: EncryptionType = EncryptionType(20)

RC4_HMAC: EncryptionType = EncryptionType(23)

RC4_HMAC_EXP: EncryptionType = EncryptionType(24)

CAMELLIA128_CTS_CMAC: EncryptionType = EncryptionType(25)

CAMELLIA256_CTS_CMAC: EncryptionType = EncryptionType(26)

SUBKEY_KEYMATERIAL: EncryptionType = EncryptionType(65)

RC4_MD4: EncryptionType = EncryptionType(-128)

RC4_PLAIN2: EncryptionType = EncryptionType(-129)

RC4_LM: EncryptionType = EncryptionType(-130)

RC4_SHA: EncryptionType = EncryptionType(-131)

DES_PLAIN: EncryptionType = EncryptionType(-132)

RC4_HMAC_OLD: EncryptionType = EncryptionType(-133)

RC4_PLAIN_OLD: EncryptionType = EncryptionType(-134)

RC4_HMAC_OLD_EXP: EncryptionType = EncryptionType(-135)

RC4_PLAIN_OLD_EXP: EncryptionType = EncryptionType(-136)

RC4_PLAIN: EncryptionType = EncryptionType(-140)

RC4_PLAIN_EXP: EncryptionType = EncryptionType(-141)

Trait Implementations

impl Clone for EncryptionType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for EncryptionType
[src]

impl PartialEq for EncryptionType
[src]

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

This method tests for !=.

impl Eq for EncryptionType
[src]

impl Debug for EncryptionType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations