2018-10-08 22:35:40 +02:00
|
|
|
package stream
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"crypto/aes"
|
2018-10-10 03:23:35 +02:00
|
|
|
"crypto/cipher"
|
2018-10-08 22:35:40 +02:00
|
|
|
"crypto/sha512"
|
|
|
|
"encoding/hex"
|
|
|
|
"strconv"
|
|
|
|
|
2019-01-09 19:05:41 +01:00
|
|
|
"github.com/lbryio/lbry.go/extras/errors"
|
2018-10-08 22:35:40 +02:00
|
|
|
)
|
|
|
|
|
2018-10-10 03:23:35 +02:00
|
|
|
const MaxBlobSize = 2097152 // 2mb, or 2 * 2^20
|
|
|
|
|
2018-10-08 22:35:40 +02:00
|
|
|
type Blob []byte
|
|
|
|
|
|
|
|
var ErrBlobTooBig = errors.Base("blob must be at most " + strconv.Itoa(MaxBlobSize) + " bytes")
|
|
|
|
var ErrBlobEmpty = errors.Base("blob is empty")
|
|
|
|
|
|
|
|
func (b Blob) Size() int {
|
|
|
|
return len(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hash returns a hash of the blob data
|
|
|
|
func (b Blob) Hash() []byte {
|
|
|
|
if b.Size() == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
hashBytes := sha512.Sum384(b)
|
|
|
|
return hashBytes[:]
|
|
|
|
}
|
|
|
|
|
2018-10-23 22:41:19 +02:00
|
|
|
// HashHex returns th blob hash as a hex string
|
|
|
|
func (b Blob) HashHex() string {
|
|
|
|
return hex.EncodeToString(b.Hash())
|
|
|
|
}
|
|
|
|
|
2018-10-08 22:35:40 +02:00
|
|
|
// ValidForSend returns true if the blob size is within the limits
|
|
|
|
func (b Blob) ValidForSend() error {
|
|
|
|
if b.Size() > MaxBlobSize {
|
|
|
|
return ErrBlobTooBig
|
|
|
|
}
|
|
|
|
if b.Size() == 0 {
|
|
|
|
return ErrBlobEmpty
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-10 03:23:35 +02:00
|
|
|
func NewBlob(data, key, iv []byte) (Blob, error) {
|
|
|
|
if len(data) == 0 {
|
|
|
|
// this is here to match python behavior. in theory we could encrypt an empty blob
|
|
|
|
return nil, errors.Err("cannot encrypt empty slice")
|
|
|
|
}
|
|
|
|
blockCipher, err := aes.NewCipher(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Err(err)
|
|
|
|
}
|
|
|
|
if len(iv) != blockCipher.BlockSize() {
|
|
|
|
return nil, errors.Err("IV length must equal to block size")
|
|
|
|
}
|
|
|
|
|
|
|
|
cbc := cipher.NewCBCEncrypter(blockCipher, iv)
|
|
|
|
plaintext, err := pkcs7Pad(data, blockCipher.BlockSize())
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Err(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
ciphertext := make([]byte, len(plaintext))
|
|
|
|
cbc.CryptBlocks(ciphertext, plaintext)
|
|
|
|
return ciphertext, nil
|
|
|
|
}
|
|
|
|
|
2019-02-18 20:33:05 +01:00
|
|
|
// DecryptBlob decrypts a blob
|
|
|
|
func DecryptBlob(b Blob, key, iv []byte) ([]byte, error) {
|
|
|
|
return b.Plaintext(key, iv)
|
|
|
|
}
|
|
|
|
|
2018-10-10 03:23:35 +02:00
|
|
|
func (b Blob) Plaintext(key, iv []byte) ([]byte, error) {
|
|
|
|
blockCipher, err := aes.NewCipher(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Err(err)
|
|
|
|
}
|
|
|
|
if len(iv) != blockCipher.BlockSize() {
|
|
|
|
return nil, errors.Err("IV length must equal to block size")
|
|
|
|
}
|
|
|
|
|
|
|
|
cbc := cipher.NewCBCDecrypter(blockCipher, iv)
|
|
|
|
plaintext := make([]byte, len(b))
|
|
|
|
cbc.CryptBlocks(plaintext, b)
|
|
|
|
|
|
|
|
plaintext, err = pkcs7Unpad(plaintext, blockCipher.BlockSize())
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Err(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return plaintext, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/fullsailor/pkcs7/blob/master/pkcs7.go#L468
|
|
|
|
func pkcs7Pad(data []byte, blockLen int) ([]byte, error) {
|
|
|
|
if blockLen < 1 {
|
|
|
|
return nil, errors.Err("invalid block length %d", blockLen)
|
|
|
|
}
|
|
|
|
padLen := blockLen - (len(data) % blockLen)
|
|
|
|
if padLen == 0 {
|
|
|
|
padLen = blockLen
|
|
|
|
}
|
2018-10-23 22:41:19 +02:00
|
|
|
padded := make([]byte, len(data)+padLen)
|
|
|
|
copy(padded, data)
|
|
|
|
copy(padded[len(padded)-padLen:], bytes.Repeat([]byte{byte(padLen)}, padLen))
|
|
|
|
return padded, nil
|
2018-10-10 03:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func pkcs7Unpad(data []byte, blockLen int) ([]byte, error) {
|
|
|
|
if blockLen < 1 {
|
|
|
|
return nil, errors.Err("invalid block length %d", blockLen)
|
|
|
|
}
|
|
|
|
if len(data)%blockLen != 0 || len(data) == 0 {
|
|
|
|
return nil, errors.Err("invalid data length %d", len(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
// the last byte is the length of padding
|
|
|
|
padLen := int(data[len(data)-1])
|
|
|
|
|
|
|
|
// check padding integrity, all bytes should be the same
|
|
|
|
pad := data[len(data)-padLen:]
|
|
|
|
for _, padbyte := range pad {
|
|
|
|
if padbyte != byte(padLen) {
|
|
|
|
return nil, errors.Err("invalid padding")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return data[:len(data)-padLen], nil
|
|
|
|
}
|