libgocryptfs/cryptfs/cryptfs.go

64 lines
1.0 KiB
Go
Raw Normal View History

2015-09-03 18:57:28 +02:00
package cryptfs
2015-09-03 18:22:18 +02:00
2015-09-05 20:30:20 +02:00
// CryptFS is the crypto backend of GoCryptFS
2015-09-03 18:22:18 +02:00
import (
"fmt"
2015-09-03 18:57:28 +02:00
"crypto/cipher"
"crypto/aes"
2015-09-03 18:22:18 +02:00
)
2015-09-03 18:57:28 +02:00
const (
KEY_LEN = 16
2015-09-03 18:57:28 +02:00
NONCE_LEN = 12
AUTH_TAG_LEN = 16
DEFAULT_PLAINBS = 4096
)
type CryptFS struct {
2015-09-03 18:57:28 +02:00
blockCipher cipher.Block
gcm cipher.AEAD
2015-09-05 20:11:20 +02:00
plainBS uint64
cipherBS uint64
// Stores an all-zero block of size cipherBS
allZeroBlock []byte
2015-09-03 18:57:28 +02:00
}
func NewCryptFS(key []byte, useOpenssl bool) *CryptFS {
2015-09-03 18:57:28 +02:00
if len(key) != KEY_LEN {
panic(fmt.Sprintf("Unsupported key length %d", len(key)))
}
b, err := aes.NewCipher(key)
2015-09-03 18:57:28 +02:00
if err != nil {
panic(err)
}
var gcm cipher.AEAD
if useOpenssl {
var k16 [16]byte
copy(k16[:], key)
gcm = opensslGCM{k16}
} else {
gcm, err = cipher.NewGCM(b)
if err != nil {
panic(err)
}
2015-09-03 18:57:28 +02:00
}
cipherBS := DEFAULT_PLAINBS + NONCE_LEN + AUTH_TAG_LEN
return &CryptFS{
2015-09-03 18:57:28 +02:00
blockCipher: b,
gcm: gcm,
2015-09-03 18:57:28 +02:00
plainBS: DEFAULT_PLAINBS,
cipherBS: uint64(cipherBS),
allZeroBlock: make([]byte, cipherBS),
2015-09-03 18:57:28 +02:00
}
}
2015-09-05 20:11:20 +02:00
func (be *CryptFS) PlainBS() uint64 {
2015-09-05 19:07:20 +02:00
return be.plainBS
}