diff options
author | Jakob Unterwurzacher | 2016-03-03 00:58:12 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-03-03 00:59:58 +0100 |
commit | 37a9b4c3ee9d5dd332ae2f4b25942c6fef254d72 (patch) | |
tree | be34844cb4d60d922479acfa06af1222df4e6579 /internal/configfile/config_file.go | |
parent | b5221c965155fbc6df958bfe4cdaed1c93b9b3f5 (diff) |
Enable openssl in tests to support old Go versions
Go 1.4 and older do not support 128-bit IVs which caused
the tests to panic.
Diffstat (limited to 'internal/configfile/config_file.go')
-rw-r--r-- | internal/configfile/config_file.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/configfile/config_file.go b/internal/configfile/config_file.go index 0b910c0..e54e84e 100644 --- a/internal/configfile/config_file.go +++ b/internal/configfile/config_file.go @@ -98,8 +98,8 @@ func LoadConfFile(filename string, password string) ([]byte, *ConfFile, error) { scryptHash := cf.ScryptObject.DeriveKey(password) // Unlock master key using password-based key - // We use stock go GCM instead of OpenSSL here as speed is not important - // and we get better error messages + // We use stock go GCM instead of OpenSSL here as we only use 96-bit IVs, + // speed is not important and we get better error messages cc := cryptocore.New(scryptHash, false, false) ce := contentenc.New(cc, 4096) |