Do not fake BF-CBC, pleae

This commit is contained in:
Davide De Rosa 2019-05-01 23:18:54 +02:00
parent 037f08ed62
commit 1430241b0c
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ extension SessionProxy {
if let direction = options.tlsWrap?.key.direction?.rawValue {
opts.append("keydir \(direction)")
}
opts.append("cipher \(options.cipher?.rawValue ?? "BF-CBC")")
opts.append("cipher \(options.fallbackCipher.rawValue)")
opts.append("auth \(options.fallbackDigest.rawValue)")
opts.append("keysize \(options.fallbackCipher.keySize)")
if let strategy = options.tlsWrap?.strategy {