Documentation ¶
Index ¶
- func NewCryptoAES_CTR(key, iv []byte) goaes.CryptoAES
- type CryptoAES_CTR
- func (c *CryptoAES_CTR) Decrypt(in []byte) (out []byte, err error)
- func (c *CryptoAES_CTR) DecryptBase64(in string) (out []byte, err error)
- func (c *CryptoAES_CTR) Encrypt(in []byte) (out []byte, err error)
- func (c *CryptoAES_CTR) EncryptBase64(in []byte) (out string, err error)
- func (c *CryptoAES_CTR) GetMode() goaes.AES_Mode
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCryptoAES_CTR ¶
key 长度必须为16/24/32字节(128/192/256 bits) iv 向量长度固定16字节
Types ¶
type CryptoAES_CTR ¶
type CryptoAES_CTR struct {
// contains filtered or unexported fields
}
func (*CryptoAES_CTR) Decrypt ¶
func (c *CryptoAES_CTR) Decrypt(in []byte) (out []byte, err error)
解密后返回二进制字节数据切片
func (*CryptoAES_CTR) DecryptBase64 ¶
func (c *CryptoAES_CTR) DecryptBase64(in string) (out []byte, err error)
解密BASE64编码字符串的密文后返回二进制切片
func (*CryptoAES_CTR) Encrypt ¶
func (c *CryptoAES_CTR) Encrypt(in []byte) (out []byte, err error)
加密后返回二进制字节数据切片
func (*CryptoAES_CTR) EncryptBase64 ¶
func (c *CryptoAES_CTR) EncryptBase64(in []byte) (out string, err error)
加密后将密文做BASE64编码字符串
Click to show internal directories.
Click to hide internal directories.