aboutsummaryrefslogtreecommitdiff
path: root/cryptfs/gcm_go15.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-12-10 20:52:59 +0100
committerJakob Unterwurzacher2015-12-10 20:55:09 +0100
commit78cd97c5e9de221a6cd2ddfcaaa2c1f1f430d264 (patch)
tree82668516f0e2b9156afc0dc6ec3f0b28a9e2de82 /cryptfs/gcm_go15.go
parent61ee2271c454047781afad6ded2e17e6efe20113 (diff)
Wrap NewGCMWithNonceSize() to enable compilation on Go 1.4
Diffstat (limited to 'cryptfs/gcm_go15.go')
-rw-r--r--cryptfs/gcm_go15.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/cryptfs/gcm_go15.go b/cryptfs/gcm_go15.go
new file mode 100644
index 0000000..7696437
--- /dev/null
+++ b/cryptfs/gcm_go15.go
@@ -0,0 +1,15 @@
+// +build go1.5
+
+package cryptfs
+
+import (
+ "crypto/cipher"
+)
+
+// 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
+// compiled on 1.4.
+func goGCMWrapper(bc cipher.Block, nonceSize int) (cipher.AEAD, error){
+ return cipher.NewGCMWithNonceSize(bc, nonceSize)
+}