加密处理类
处理类型
- Aes
- Hash
- md5
文件说明
名称 |
所在目录 |
备注说明 |
aes |
CryptoHelper/EncryptAes/Aes.go |
aes 加密(java, php, go通用) |
aes |
CryptoHelper/EncryptAes/AesPadding/Aes.go |
aes 加密,补充填充未兼容其它语言 |
hash |
CryptoHelper/Hash.go |
hash26 |
md5 |
CryptoHelper/EncryptMd5/Md5.go |
md5 加密 |
使用案例:
- aes (java php go 通用版)
str:="123456"
key:="123456"
aesEncryptBytes,_:= EncryptAes.AesEncrypt([]byte(str),[]byte(key))
aesEncrypt :=string(aesEncryptBytes)
fmt.Println(aesEncrypt)
- hash
str:="1234565"
hashStr:=CryptoHelper.Hash256(str)
fmt.Println(hashStr)
- md5
str:="123456"
md5Str,_:=EncryptMd5.Md5(str)
fmt.Println(md5Str)