v2ray-core/common/crypto/aes.go

17 lines
358 B
Go
Raw Normal View History

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