摘要: package main import ( "crypto" "crypto/rand" "crypto/rsa" "crypto/x509" "encoding/base64" "encoding/pem" "errors" "fmt" "io/ioutil" ) func main() { st 阅读全文
posted @ 2020-01-28 22:37 A毛毛 阅读(2447) 评论(0) 推荐(0) 编辑
摘要: package main import ( "bytes" "crypto/aes" "crypto/cipher" "crypto/des" "encoding/base64" "fmt" ) // main 入口函数 func main() { // DES密钥 key := "12345678 阅读全文
posted @ 2020-01-28 10:07 A毛毛 阅读(964) 评论(0) 推荐(0) 编辑