summaryrefslogtreecommitdiff
path: root/cryptfs/fs.go
diff options
context:
space:
mode:
Diffstat (limited to 'cryptfs/fs.go')
-rw-r--r--cryptfs/fs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptfs/fs.go b/cryptfs/fs.go
index b40dcf3..9050b30 100644
--- a/cryptfs/fs.go
+++ b/cryptfs/fs.go
@@ -26,7 +26,7 @@ type FS struct {
cipherBS int64
}
-func New(key [16]byte) *FS {
+func NewFS(key [16]byte) *FS {
b, err := aes.NewCipher(key[:])
if err != nil {