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/cryptfs.go | |
parent | 8518d6d7bde33fdc7ef5bcb7c3c7709404392ad8 (diff) |
go fmt
...and minimal comment changes.
Diffstat (limited to 'cryptfs/cryptfs.go')
-rw-r--r-- | cryptfs/cryptfs.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cryptfs/cryptfs.go b/cryptfs/cryptfs.go index 5832e36..58cca74 100644 --- a/cryptfs/cryptfs.go +++ b/cryptfs/cryptfs.go @@ -24,7 +24,7 @@ type CryptFS struct { plainBS uint64 cipherBS uint64 // Stores an all-zero block of size cipherBS - allZeroBlock []byte + allZeroBlock []byte // DirIV cache for filename encryption DirIVCacheEnc DirIVCache } @@ -53,11 +53,11 @@ func NewCryptFS(key []byte, useOpenssl bool, plaintextNames bool) *CryptFS { cipherBS := DEFAULT_PLAINBS + NONCE_LEN + AUTH_TAG_LEN return &CryptFS{ - blockCipher: b, - gcm: gcm, - plainBS: DEFAULT_PLAINBS, - cipherBS: uint64(cipherBS), - allZeroBlock: make([]byte, cipherBS), + blockCipher: b, + gcm: gcm, + plainBS: DEFAULT_PLAINBS, + cipherBS: uint64(cipherBS), + allZeroBlock: make([]byte, cipherBS), } } |