2015-08-18 05:57:27 +05:30
|
|
|
package crypto
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/aes"
|
|
|
|
"crypto/cipher"
|
|
|
|
"crypto/rand"
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2015-10-28 02:28:54 +05:30
|
|
|
const aesKeySize = 32 // force 256-bit AES
|
|
|
|
|
2015-08-18 05:57:27 +05:30
|
|
|
// pad uses the PKCS#7 padding scheme to align the a payload to a specific block size
|
|
|
|
func pad(plaintext []byte, bsize int) ([]byte, error) {
|
|
|
|
if bsize >= 256 {
|
|
|
|
return nil, errors.New("bsize must be < 256")
|
|
|
|
}
|
|
|
|
pad := bsize - (len(plaintext) % bsize)
|
|
|
|
if pad == 0 {
|
|
|
|
pad = bsize
|
|
|
|
}
|
|
|
|
for i := 0; i < pad; i++ {
|
|
|
|
plaintext = append(plaintext, byte(pad))
|
|
|
|
}
|
|
|
|
return plaintext, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// unpad strips the padding previously added using the PKCS#7 padding scheme
|
|
|
|
func unpad(paddedtext []byte) ([]byte, error) {
|
|
|
|
length := len(paddedtext)
|
|
|
|
paddedtext, lbyte := paddedtext[:length-1], paddedtext[length-1]
|
|
|
|
pad := int(lbyte)
|
|
|
|
if pad >= 256 || pad > length {
|
|
|
|
return nil, errors.New("padding malformed")
|
|
|
|
}
|
|
|
|
return paddedtext[:length-(pad)], nil
|
|
|
|
}
|
|
|
|
|
2015-10-28 02:28:54 +05:30
|
|
|
// **DEPRECATED** AESEncrypt encrypts a payloaded with an AES cipher.
|
2015-08-18 05:57:27 +05:30
|
|
|
// The returned ciphertext has three notable properties:
|
|
|
|
// 1. ciphertext is aligned to the standard AES block size
|
|
|
|
// 2. ciphertext is padded using PKCS#7
|
|
|
|
// 3. IV is prepended to the ciphertext
|
|
|
|
func AESEncrypt(plaintext, key []byte) ([]byte, error) {
|
|
|
|
plaintext, err := pad(plaintext, aes.BlockSize)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
block, err := aes.NewCipher(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ciphertext := make([]byte, aes.BlockSize+len(plaintext))
|
|
|
|
iv := ciphertext[:aes.BlockSize]
|
|
|
|
if _, err := rand.Read(iv); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mode := cipher.NewCBCEncrypter(block, iv)
|
|
|
|
mode.CryptBlocks(ciphertext[aes.BlockSize:], plaintext)
|
|
|
|
|
|
|
|
return ciphertext, nil
|
|
|
|
}
|
|
|
|
|
2015-10-28 02:28:54 +05:30
|
|
|
// **DEPRECATED** AESDecrypt decrypts an encrypted payload with an AES cipher.
|
2015-08-18 05:57:27 +05:30
|
|
|
// The decryption algorithm makes three assumptions:
|
|
|
|
// 1. ciphertext is aligned to the standard AES block size
|
|
|
|
// 2. ciphertext is padded using PKCS#7
|
|
|
|
// 3. the IV is prepended to ciphertext
|
|
|
|
func AESDecrypt(ciphertext, key []byte) ([]byte, error) {
|
|
|
|
if len(ciphertext) < aes.BlockSize {
|
|
|
|
return nil, errors.New("ciphertext too short")
|
|
|
|
}
|
|
|
|
|
|
|
|
iv := ciphertext[:aes.BlockSize]
|
|
|
|
ciphertext = ciphertext[aes.BlockSize:]
|
|
|
|
|
|
|
|
if len(ciphertext)%aes.BlockSize != 0 {
|
|
|
|
return nil, errors.New("ciphertext is not a multiple of the block size")
|
|
|
|
}
|
|
|
|
|
|
|
|
block, err := aes.NewCipher(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mode := cipher.NewCBCDecrypter(block, iv)
|
|
|
|
|
2015-08-26 05:13:48 +05:30
|
|
|
plaintext := make([]byte, len(ciphertext))
|
|
|
|
mode.CryptBlocks(plaintext, ciphertext)
|
|
|
|
|
|
|
|
if len(plaintext)%aes.BlockSize != 0 {
|
2015-08-18 05:57:27 +05:30
|
|
|
return nil, errors.New("ciphertext is not a multiple of the block size")
|
|
|
|
}
|
|
|
|
|
2015-08-26 05:13:48 +05:30
|
|
|
return unpad(plaintext)
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
2015-10-28 02:28:54 +05:30
|
|
|
|
|
|
|
// Takes plaintext and a key, returns ciphertext or error
|
|
|
|
// Output takes the form nonce|ciphertext|tag where '|' indicates concatenation
|
|
|
|
func Encrypt(plaintext, key []byte) (ciphertext []byte, err error) {
|
|
|
|
if len(key) != aesKeySize {
|
|
|
|
return nil, aes.KeySizeError(len(key))
|
|
|
|
}
|
|
|
|
|
|
|
|
aes, err := aes.NewCipher(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
gcm, err := cipher.NewGCM(aes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
nonce, err := RandBytes(gcm.NonceSize())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return gcm.Seal(nonce, nonce, plaintext, nil), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Takes ciphertext and a key, returns plaintext or error
|
|
|
|
// Expects input form nonce|ciphertext|tag where '|' indicates concatenation
|
|
|
|
func Decrypt(ciphertext, key []byte) (plaintext []byte, err error) {
|
|
|
|
if len(key) != aesKeySize {
|
|
|
|
return nil, aes.KeySizeError(len(key))
|
|
|
|
}
|
|
|
|
|
|
|
|
aes, err := aes.NewCipher(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
gcm, err := cipher.NewGCM(aes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return gcm.Open(nil, ciphertext[:gcm.NonceSize()],
|
|
|
|
ciphertext[gcm.NonceSize():], nil)
|
|
|
|
}
|