17 lines
358 B
Go
Raw Normal View History

2015-11-03 21:26:16 +01:00
package crypto
import (
"crypto/aes"
"crypto/cipher"
)
2016-02-25 21:50:10 +01:00
func NewAesDecryptionStream(key []byte, iv []byte) cipher.Stream {
aesBlock, _ := aes.NewCipher(key)
return cipher.NewCFBDecrypter(aesBlock, iv)
2015-11-03 21:26:16 +01:00
}
2016-02-25 21:50:10 +01:00
func NewAesEncryptionStream(key []byte, iv []byte) cipher.Stream {
aesBlock, _ := aes.NewCipher(key)
return cipher.NewCFBEncrypter(aesBlock, iv)
2015-11-03 21:26:16 +01:00
}