Hunter0x7c7
2022-08-11 a82f9cb69f63aaeba40c024960deda7d75b9fece
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package crypto
 
import (
    "crypto/aes"
    "crypto/cipher"
 
    "github.com/v2fly/v2ray-core/v5/common"
)
 
// 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.
func NewAesDecryptionStream(key []byte, iv []byte) cipher.Stream {
    return NewAesStreamMethod(key, iv, cipher.NewCFBDecrypter)
}
 
// 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.
func NewAesEncryptionStream(key []byte, iv []byte) cipher.Stream {
    return NewAesStreamMethod(key, iv, cipher.NewCFBEncrypter)
}
 
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)
}
 
// NewAesCTRStream creates a stream cipher based on AES-CTR.
func NewAesCTRStream(key []byte, iv []byte) cipher.Stream {
    return NewAesStreamMethod(key, iv, cipher.NewCTR)
}
 
// NewAesGcm creates a AEAD cipher based on AES-GCM.
func NewAesGcm(key []byte) cipher.AEAD {
    block, err := aes.NewCipher(key)
    common.Must(err)
    aead, err := cipher.NewGCM(block)
    common.Must(err)
    return aead
}