package
0.0.0-20240202030812-4699a84b093b
Repository: https://github.com/lm1996-mojor/go-core-library.git
Documentation: pkg.go.dev

# Functions

AesDecryptECB AES_ECB解密 @Description 加密可以调用 cipher.EncryptAES(key , plainText) 函数 @Param []byte key "对称秘钥",必须要16/32位 @Param []byte encrypted "需要解密的字符串".
AesEncryptECB AES_ECB加密 @Description 解密可以调用 cipher.DecryptAES(key ,encryptText) 函数 @Param []byte key "对称秘钥",必须要16/32位 @Param []byte origData "需要加密的字符串内容".