tls
Safe HaskellNone
LanguageHaskell2010

Network.TLS.Extra.CipherCBC

Synopsis

TLS 1.2 CBC ciphers with PFS and SHA2

ciphersuite_pfs_sha2_cbc :: [Cipher] Source #

TLS 1.2 AES CBC ciphers with DHE or ECDHE key exchange, ECDSA or RSA authentication and a SHA256 or SHA2384 MAC. For legacy applications only, deprecated in HTTPS.

ciphersuite_ecdhe_sha2_cbc :: [Cipher] Source #

TLS 1.2 AES CBC ciphers with ECDHE key exchange, ECDSA or RSA authentication and a SHA256 or SHA2384 MAC. For legacy applications only, deprecated in HTTPS.

ciphersuite_dhe_rsa_sha2_cbc :: [Cipher] Source #

TLS 1.2 AES CBC ciphers with DHE key exchange, RSA authentication and a SHA256 MAC. For legacy applications only, deprecated in HTTPS.

Individual CBC ciphers

cipher_DHE_RSA_AES128_SHA256 :: Cipher Source #

TLS 1.2 AES128 CBC, with DHE key exchange, RSA authentication and a SHA256 MAC. For legacy applications only, deprecated in HTTPS.

cipher_DHE_RSA_AES256_SHA256 :: Cipher Source #

TLS 1.2 AES256 CBC, with DHE key exchange, RSA authentication and a SHA256 MAC. For legacy applications only, deprecated in HTTPS.

cipher_ECDHE_RSA_AES128CBC_SHA256 :: Cipher Source #

TLS 1.2 AES128 CBC, with ECDHE key exchange, RSA authentication and a SHA256 MAC. For legacy applications only, deprecated in HTTPS.

cipher_ECDHE_RSA_AES256CBC_SHA384 :: Cipher Source #

TLS 1.2 AES256 CBC, with ECDHE key exchange, RSA authentication and a SHA384 MAC. For legacy applications only, deprecated in HTTPS.

cipher_ECDHE_ECDSA_AES128CBC_SHA256 :: Cipher Source #

TLS 1.2 AES128 CBC, with ECDHE key exchange, ECDSA authentication and a SHA256 MAC. For legacy applications only, deprecated in HTTPS.