diff options
author | Jakob Unterwurzacher | 2015-12-13 20:10:52 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-12-13 20:24:13 +0100 |
commit | 00a712b4d1e68bb3c156eb8f97fbb89d684a7e92 (patch) | |
tree | abf6d8c1b4493542686b3e59aaa08602fbfd4ead /cryptfs/gcm_go15.go | |
parent | 8518d6d7bde33fdc7ef5bcb7c3c7709404392ad8 (diff) |
go fmt
...and minimal comment changes.
Diffstat (limited to 'cryptfs/gcm_go15.go')
-rw-r--r-- | cryptfs/gcm_go15.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptfs/gcm_go15.go b/cryptfs/gcm_go15.go index 7696437..3a8055e 100644 --- a/cryptfs/gcm_go15.go +++ b/cryptfs/gcm_go15.go @@ -10,6 +10,6 @@ import ( // 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){ +func goGCMWrapper(bc cipher.Block, nonceSize int) (cipher.AEAD, error) { return cipher.NewGCMWithNonceSize(bc, nonceSize) } |