aboutsummaryrefslogtreecommitdiff
path: root/cryptfs
diff options
context:
space:
mode:
Diffstat (limited to 'cryptfs')
-rw-r--r--cryptfs/cryptfs.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cryptfs/cryptfs.go b/cryptfs/cryptfs.go
index c58481c..214ea10 100644
--- a/cryptfs/cryptfs.go
+++ b/cryptfs/cryptfs.go
@@ -9,10 +9,11 @@ import (
)
const (
+ DEFAULT_PLAINBS = 4096
KEY_LEN = 16
NONCE_LEN = 12
AUTH_TAG_LEN = 16
- DEFAULT_PLAINBS = 4096
+ FILEID_LEN = 16
)
type CryptFS struct {