内容简介:加密:解密:
https://cyberspy.io/articles/crypto101/
加密:
package main import ( "crypto/aes" "crypto/cipher" "crypto/rand" "fmt" "io" ) func main() { // The key argument should be the AES key, either 16 or 32 bytes // to select AES-128 or AES-256. key := []byte("0123456789ABCDEF") plaintext := []byte("Apple") block, err := aes.NewCipher(key) if err != nil { panic(err.Error()) } nonce := make([]byte, 12) if false { if _, err := io.ReadFull(rand.Reader, nonce); err != nil { panic(err.Error()) } } fmt.Printf("nonce: %x\n", nonce) aesgcm, err := cipher.NewGCM(block) if err != nil { panic(err.Error()) } ciphertext := aesgcm.Seal(nil, nonce, plaintext, nil) fmt.Printf("cipher:%x\n", ciphertext) }
解密:
package main import ( "crypto/aes" "crypto/cipher" "fmt" "encoding/hex" ) func main (){ key := []byte("0123456789ABCDEF") ciphertext, _ := hex.DecodeString("08f24c28f0fc9aef5812a35ce66235bc2488d6c29b") //加密生成的结果 nonce, _ := hex.DecodeString("000000000000000000000000") //加密用的nonce block, err := aes.NewCipher(key) if err != nil { panic(err.Error()) } aesgcm, err := cipher.NewGCM(block) if err != nil { panic(err.Error()) } plaintext, err := aesgcm.Open(nil, nonce, ciphertext, nil) if err != nil { panic(err.Error()) } fmt.Println(string(plaintext)) }
跟踪 tls(https) 代码里面, server 和client 走的 就是 aes GCM。
nonce 应该就是随机数(random)
以上所述就是小编给大家介绍的《golang crypto aes 加密,解密示例》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- APICloud解密本地资源到逆向APP算法到通用资源解密
- NodeJS加密解密,node-rsa加密解密用法
- CMSEasy企业建站源代码解密工具,适用于纯本地解密机制!
- 如何解密keystore文件
- 解密 Runloop
- 加解密详解
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
深入浅出强化学习:原理入门
郭宪、方勇纯 / 电子工业出版社 / 2018-1 / 79
《深入浅出强化学习:原理入门》用通俗易懂的语言深入浅出地介绍了强化学习的基本原理,覆盖了传统的强化学习基本方法和当前炙手可热的深度强化学习方法。开篇从最基本的马尔科夫决策过程入手,将强化学习问题纳入到严谨的数学框架中,接着阐述了解决此类问题最基本的方法——动态规划方法,并从中总结出解决强化学习问题的基本思路:交互迭代策略评估和策略改善。基于这个思路,分别介绍了基于值函数的强化学习方法和基于直接策略......一起来看看 《深入浅出强化学习:原理入门》 这本书的介绍吧!