diff options
author | Jakob Unterwurzacher | 2016-02-06 12:27:09 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-02-06 12:27:55 +0100 |
commit | adcfbd79a8b8bb85cbee25996ab622a05de0dbc1 (patch) | |
tree | 975b053ba075ba1d6ec5236dd580848a39334b1b /cryptfs/cryptfs.go | |
parent | 1573efec98bd96a078afdf5d1584436b07dac165 (diff) |
Rename DirIVCacheEnc to just DirIVCache
...and unexport dirIVCache
Diffstat (limited to 'cryptfs/cryptfs.go')
-rw-r--r-- | cryptfs/cryptfs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptfs/cryptfs.go b/cryptfs/cryptfs.go index 5b3f074..3a40e29 100644 --- a/cryptfs/cryptfs.go +++ b/cryptfs/cryptfs.go @@ -28,7 +28,7 @@ type CryptFS struct { // Stores an all-zero block of size cipherBS allZeroBlock []byte // DirIV cache for filename encryption - DirIVCacheEnc DirIVCache + DirIVCache dirIVCache } func NewCryptFS(key []byte, useOpenssl bool, plaintextNames bool, GCMIV128 bool) *CryptFS { |