1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00

41 lines
1.2 KiB
Go
Raw Normal View History

2015-11-03 21:26:16 +01:00
package crypto
import (
"crypto/aes"
"crypto/cipher"
2017-04-28 14:48:23 +02:00
"v2ray.com/core/common"
2015-11-03 21:26:16 +01:00
)
2016-07-26 21:21:22 +02: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 21:50:10 +01:00
func NewAesDecryptionStream(key []byte, iv []byte) cipher.Stream {
2018-07-04 17:48:48 +02:00
return NewAesStreamMethod(key, iv, cipher.NewCFBDecrypter)
}
2016-07-26 21:21:22 +02: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 21:50:10 +01:00
func NewAesEncryptionStream(key []byte, iv []byte) cipher.Stream {
2018-07-04 17:48:48 +02:00
return NewAesStreamMethod(key, iv, cipher.NewCFBEncrypter)
}
2018-07-13 14:36:09 +02:00
func NewAesStreamMethod(key []byte, iv []byte, f func(cipher.Block, []byte) cipher.Stream) cipher.Stream {
aesBlock, err := aes.NewCipher(key)
common.Must(err)
return f(aesBlock, iv)
}
2019-02-23 00:01:23 +01:00
// NewAesCTRStream creates a stream cipher based on AES-CTR.
2018-07-04 17:48:48 +02:00
func NewAesCTRStream(key []byte, iv []byte) cipher.Stream {
return NewAesStreamMethod(key, iv, cipher.NewCTR)
2015-11-03 21:26:16 +01:00
}
2018-09-12 15:43:36 +02:00
2019-02-23 00:01:23 +01:00
// NewAesGcm creates a AEAD cipher based on AES-GCM.
2018-09-12 15:43:36 +02:00
func NewAesGcm(key []byte) cipher.AEAD {
block, err := aes.NewCipher(key)
common.Must(err)
aead, err := cipher.NewGCM(block)
common.Must(err)
return aead
}