diff options
author | Jakob Unterwurzacher | 2016-03-03 00:48:32 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-03-03 00:48:32 +0100 |
commit | b5221c965155fbc6df958bfe4cdaed1c93b9b3f5 (patch) | |
tree | 2636c2a56b3bdc4aeeaee6d0bc07ab0d4809beb7 /internal/cryptocore | |
parent | 653d4a619cb7b937d81deab4f20d3c8d4baa4898 (diff) |
Fix Go 1.4 build failure caused by a refactoring oversight
Diffstat (limited to 'internal/cryptocore')
-rw-r--r-- | internal/cryptocore/gcm_go1.4.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/internal/cryptocore/gcm_go1.4.go b/internal/cryptocore/gcm_go1.4.go index dba222c..aaae259 100644 --- a/internal/cryptocore/gcm_go1.4.go +++ b/internal/cryptocore/gcm_go1.4.go @@ -6,6 +6,8 @@ package cryptocore import ( "crypto/cipher" "fmt" + + "github.com/rfjakob/gocryptfs/internal/toggledlog" ) // goGCMWrapper - This wrapper makes sure gocryptfs can be compiled on Go @@ -14,8 +16,8 @@ import ( // compiled on 1.4. func goGCMWrapper(bc cipher.Block, nonceSize int) (cipher.AEAD, error) { if nonceSize != 12 { - Warn.Printf("128 bit GCM IVs are not supported by Go 1.4 and lower.") - Warn.Printf("Please use openssl crypto or recompile using a newer Go runtime.") + toggledlog.Warn.Printf("128 bit GCM IVs are not supported by Go 1.4 and lower.") + toggledlog.Warn.Printf("Please use openssl crypto or recompile using a newer Go runtime.") return nil, fmt.Errorf("128 bit GCM IVs are not supported by Go 1.4 and lower") } return cipher.NewGCM(bc) |