文件名称:rosa:基于Go的RSA加密
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-24 02:33:14
Go
RoSA RoSA是在go项目中实施RSA的快速简便的方法。 版本 0.0.1 特征 生成私钥和公钥并将其保存到文件中 使用类似SSH的系统管理Friend的公钥(authorized_keys) 安装 go get github.com/mrgosti/rosa 教程/示例 package main import ( "fmt" "github.com/mrgosti/rosa" ) func main () { privateKey , publicKey , err := rosa . Generate ( "Example" , false ) // you generate a Key pair that you will use later (no need to save them) if err != nil { panic ( err ) } frien
【文件预览】:
rosa-master
----.gitignore(4B)
----utils.go(972B)
----key.go(2KB)
----README.md(1KB)
----friend.go(3KB)
----rosa.go(2KB)