diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/cryptocore/gcm_go1.4.go | 4 | ||||
-rw-r--r-- | internal/cryptocore/gcm_go1.5.go | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/internal/cryptocore/gcm_go1.4.go b/internal/cryptocore/gcm_go1.4.go index f7b77b2..6b494d7 100644 --- a/internal/cryptocore/gcm_go1.4.go +++ b/internal/cryptocore/gcm_go1.4.go @@ -10,6 +10,10 @@ import ( "github.com/rfjakob/gocryptfs/internal/tlog" ) +const ( + HaveModernGoGCM = false +) + // 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 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 |