Categorygithub.com/ant-libs-go/security
repositorypackage
0.1.1
Repository: https://github.com/ant-libs-go/security.git
Documentation: pkg.go.dev

# README

Security

security是一个简单的对称加密算法

License GoDoc Go Report Card

安装

go get github.com/ant-libs-go/security

快速开始

key := "8dssword99.2020%"
rawStr := "abcdefghijklmnopqrstuvwxyz"

mgr := New(key)
encStr := mgr.Encode(rawStr)
decStr, _ := mgr.Decode(encStr)