diff options
author | Jakob Unterwurzacher | 2015-09-13 21:47:18 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-09-13 22:09:38 +0200 |
commit | 6f9e90c414c165ff76cd7546b9898b51660a2440 (patch) | |
tree | d6dc91c505bc41e14d61dc592a5b07c9698dfe35 /pathfs_frontend | |
parent | 164739b65588bcad91425f38db1ae1aae5c15e56 (diff) |
Encrypt key with scrypt-hashed password
Diffstat (limited to 'pathfs_frontend')
-rw-r--r-- | pathfs_frontend/fs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathfs_frontend/fs.go b/pathfs_frontend/fs.go index 1e4a1f3..5a52cfc 100644 --- a/pathfs_frontend/fs.go +++ b/pathfs_frontend/fs.go @@ -19,7 +19,7 @@ type FS struct { } // Encrypted FUSE overlay filesystem -func NewFS(key [16]byte, backing string, useOpenssl bool) *FS { +func NewFS(key []byte, backing string, useOpenssl bool) *FS { return &FS{ CryptFS: cryptfs.NewCryptFS(key, useOpenssl), FileSystem: pathfs.NewLoopbackFileSystem(backing), |