Commit bc01c84a authored by Cole Brown's avatar Cole Brown

Remove support for blowfish

parent 2835a401
...@@ -191,10 +191,6 @@ func KeyStretcher(cipherType string, hashType string, secret []byte) (StretchedK ...@@ -191,10 +191,6 @@ func KeyStretcher(cipherType string, hashType string, secret []byte) (StretchedK
case "AES-256": case "AES-256":
ivSize = 16 ivSize = 16
cipherKeySize = 32 cipherKeySize = 32
case "Blowfish":
ivSize = 8
// Note: cypherKeySize arbitrarily selected, needs more thought
cipherKeySize = 32
} }
hmacKeySize := 20 hmacKeySize := 20
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment