diff options
author | Jakob Unterwurzacher | 2016-02-06 20:22:45 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-02-06 20:22:45 +0100 |
commit | b0ee5258b1ac60b9a672d9db0816b17ae12d0e55 (patch) | |
tree | 3decdec7e3abf5978c2e936693a034cf838a16ca /internal/contentenc/content_api.go | |
parent | 9078a77850dd680bfa938d9ed7c83600a60c0e7b (diff) |
Fix tests - were broken by the refactoring
Diffstat (limited to 'internal/contentenc/content_api.go')
-rw-r--r-- | internal/contentenc/content_api.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/contentenc/content_api.go b/internal/contentenc/content_api.go index 1700d35..4c6aa00 100644 --- a/internal/contentenc/content_api.go +++ b/internal/contentenc/content_api.go @@ -2,6 +2,11 @@ package contentenc import "github.com/rfjakob/gocryptfs/internal/cryptocore" +const ( + // Default plaintext block size + DefaultBS = 4096 +) + type ContentEnc struct { // Cryptographic primitives cryptoCore *cryptocore.CryptoCore |