tls-1.2.8: TLS/SSL protocol native implementation (Server and Client)

Portabilityunknown
Stabilityexperimental
MaintainerVincent Hanquez <vincent@snarc.org>
Safe HaskellNone

Network.TLS.Extra.Cipher

Contents

Description

 

Synopsis

cipher suite

ciphersuite_all :: [Cipher]Source

all encrypted ciphers supported ordered from strong to weak. this choice of ciphersuite should satisfy most normal need

ciphersuite_medium :: [Cipher]Source

list of medium ciphers.

ciphersuite_strong :: [Cipher]Source

the strongest ciphers supported.

ciphersuite_unencrypted :: [Cipher]Source

all unencrypted ciphers, do not use on insecure network.

ciphersuite_dhe_rsa :: [Cipher]Source

DHE-RSA cipher suite

individual ciphers

cipher_null_SHA1 :: CipherSource

unencrypted cipher using RSA for key exchange and SHA1 for digest

cipher_null_MD5 :: CipherSource

unencrypted cipher using RSA for key exchange and MD5 for digest

cipher_RC4_128_MD5 :: CipherSource

RC4 cipher, RSA key exchange and MD5 for digest

cipher_RC4_128_SHA1 :: CipherSource

RC4 cipher, RSA key exchange and SHA1 for digest

cipher_AES128_SHA1 :: CipherSource

AES cipher (128 bit key), RSA key exchange and SHA1 for digest

cipher_AES256_SHA1 :: CipherSource

AES cipher (256 bit key), RSA key exchange and SHA1 for digest

cipher_AES128_SHA256 :: CipherSource

AES cipher (128 bit key), RSA key exchange and SHA256 for digest

cipher_AES256_SHA256 :: CipherSource

AES cipher (256 bit key), RSA key exchange and SHA256 for digest

cipher_RSA_3DES_EDE_CBC_SHA1 :: CipherSource

3DES cipher (168 bit key), RSA key exchange and SHA1 for digest

cipher_DHE_RSA_AES128_SHA1 :: CipherSource

AES cipher (128 bit key), DHE key exchanged signed by RSA and SHA1 for digest

cipher_DHE_RSA_AES256_SHA1 :: CipherSource

AES cipher (256 bit key), DHE key exchanged signed by RSA and SHA1 for digest

cipher_DHE_DSS_AES128_SHA1 :: CipherSource

AES cipher (128 bit key), DHE key exchanged signed by DSA and SHA1 for digest

cipher_DHE_DSS_AES256_SHA1 :: CipherSource

AES cipher (256 bit key), DHE key exchanged signed by DSA and SHA1 for digest