openssh_key.cipher.confidentialityΒΆ

Classes representing symmetric-key ciphers that offer only a guarantee of confidentiality (secrecy).

Classes

AES128_CBCCipher()

The Advanced Encryption Standard (the Rijndael block cipher) with a key length of 128 bits, under the cipher block chaining mode of operation initialized with a given initialization vector.

AES128_CTRCipher()

The Advanced Encryption Standard (the Rijndael block cipher) with a key length of 128 bits, under the counter mode of operation initialized with a given initialization vector.

AES192_CBCCipher()

The Advanced Encryption Standard (the Rijndael block cipher) with a key length of 192 bits, under the cipher block chaining mode of operation initialized with a given initialization vector.

AES192_CTRCipher()

The Advanced Encryption Standard (the Rijndael block cipher) with a key length of 192 bits, under the counter mode of operation initialized with a given initialization vector.

AES256_CBCCipher()

The Advanced Encryption Standard (the Rijndael block cipher) with a key length of 256 bits, under the cipher block chaining mode of operation initialized with a given initialization vector.

AES256_CTRCipher()

The Advanced Encryption Standard (the Rijndael block cipher) with a key length of 256 bits, under the counter mode of operation initialized with a given initialization vector.

AESCipher()

The Advanced Encryption Standard (the Rijndael block cipher), under a mode of operation that offers only confidentiality.

CBCCipher()

A cipher under the cipher block chaining mode of operation.

CTRCipher()

A cipher under the counter mode of operation.

ConfidentialityOnlyCipher()

A symmetric-key cipher that offers only a guarantee of confidentiality (secrecy).

TripleDESCipher()

The Triple Data Encryption Algorithm (3DES).

TripleDES_CBCCipher()

The Triple Data Encryption Algorithm with a key length of 192 bits, under the cipher block chaining mode of operation initialized with a given initialization vector.