diff options
author | Jakob Unterwurzacher | 2016-10-04 22:29:14 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-10-04 22:34:12 +0200 |
commit | db5782028aaff99dbf15c62d851a4f6ec8227748 (patch) | |
tree | 78fddba641b4f84ec99ed22dadecb50df1eb9809 /internal/cryptocore/gcm_go1.5.go | |
parent | b80d01056f35b2d062e73a6c7d4ba3cff3b6ef7e (diff) |
tests: skip tests with -openssl=false on Go 1.4 and lower
Go versions 1.4 and lower lack NewGCMWithNonceSize(), which causes
a panic in the test.
Diffstat (limited to 'internal/cryptocore/gcm_go1.5.go')
-rw-r--r-- | internal/cryptocore/gcm_go1.5.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/cryptocore/gcm_go1.5.go b/internal/cryptocore/gcm_go1.5.go index 0c9b1a5..6e67d21 100644 --- a/internal/cryptocore/gcm_go1.5.go +++ b/internal/cryptocore/gcm_go1.5.go @@ -7,6 +7,10 @@ import ( "crypto/cipher" ) +const ( + HaveModernGoGCM = true +) + // goGCMWrapper - This wrapper makes sure gocryptfs can be compiled on Go // versions 1.4 and lower that lack NewGCMWithNonceSize(). // 128 bit GCM IVs will not work when using built-in Go crypto, obviously, when |