gaes

AES算法。

使用方式:

  1. import "gitee.com/johng/gf/g/crypto/gaes"

方法列表:

  1. func Decrypt(cipherText []byte, key []byte, iv ...[]byte) ([]byte, error)
  2. func Encrypt(plainText []byte, key []byte, iv ...[]byte) ([]byte, error)
  3. func PKCS5Padding(src []byte, blockSize int) []byte
  4. func PKCS5UnPadding(src []byte) []byte