From 7e92ebe16a7735b29e0fdc62d4b5d49ce0dc2b66 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Thu, 16 Jun 2016 19:02:47 +0200 Subject: Rename nametransform, contentenc source files Let's have shorter names, and merge *_api.go into the "main" file. No code changes. --- internal/contentenc/content_api.go | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 internal/contentenc/content_api.go (limited to 'internal/contentenc/content_api.go') diff --git a/internal/contentenc/content_api.go b/internal/contentenc/content_api.go deleted file mode 100644 index cf482b6..0000000 --- a/internal/contentenc/content_api.go +++ /dev/null @@ -1,35 +0,0 @@ -package contentenc - -import "github.com/rfjakob/gocryptfs/internal/cryptocore" - -const ( - // Default plaintext block size - DefaultBS = 4096 -) - -type ContentEnc struct { - // Cryptographic primitives - cryptoCore *cryptocore.CryptoCore - // Plaintext block size - plainBS uint64 - // Ciphertext block size - cipherBS uint64 - // All-zero block of size cipherBS, for fast compares - allZeroBlock []byte -} - -func New(cc *cryptocore.CryptoCore, plainBS uint64) *ContentEnc { - - cipherBS := plainBS + uint64(cc.IVLen) + cryptocore.AuthTagLen - - return &ContentEnc{ - cryptoCore: cc, - plainBS: plainBS, - cipherBS: cipherBS, - allZeroBlock: make([]byte, cipherBS), - } -} - -func (be *ContentEnc) PlainBS() uint64 { - return be.plainBS -} -- cgit v1.2.3