2015-11-03 15:26:16 -05:00
|
|
|
package crypto
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/aes"
|
|
|
|
"crypto/cipher"
|
|
|
|
)
|
|
|
|
|
2016-07-26 15:21:22 -04:00
|
|
|
// NewAesDecryptionStream creates a new AES encryption stream based on given key and IV.
|
|
|
|
// Caller must ensure the length of key and IV is either 16, 24 or 32 bytes.
|
2016-02-25 15:50:10 -05:00
|
|
|
func NewAesDecryptionStream(key []byte, iv []byte) cipher.Stream {
|
2016-12-21 09:37:16 -05:00
|
|
|
aesBlock, err := aes.NewCipher(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2016-02-25 15:50:10 -05:00
|
|
|
return cipher.NewCFBDecrypter(aesBlock, iv)
|
2015-11-03 15:26:16 -05:00
|
|
|
}
|
|
|
|
|
2016-07-26 15:21:22 -04:00
|
|
|
// NewAesEncryptionStream creates a new AES description stream based on given key and IV.
|
|
|
|
// Caller must ensure the length of key and IV is either 16, 24 or 32 bytes.
|
2016-02-25 15:50:10 -05:00
|
|
|
func NewAesEncryptionStream(key []byte, iv []byte) cipher.Stream {
|
2016-12-21 09:37:16 -05:00
|
|
|
aesBlock, err := aes.NewCipher(key)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2016-02-25 15:50:10 -05:00
|
|
|
return cipher.NewCFBEncrypter(aesBlock, iv)
|
2015-11-03 15:26:16 -05:00
|
|
|
}
|