Spring Security 加密字符串 - Go 中解密失败
来源:stackoverflow
2024-04-05 11:42:34
0浏览
收藏
Golang不知道大家是否熟悉?今天我将给大家介绍《Spring Security 加密字符串 - Go 中解密失败》,这篇文章主要会讲到等等知识点,如果你在看完本篇文章后,有更好的建议或者发现哪里有问题,希望大家都能积极评论指出,谢谢!希望我们能一起加油进步!
问题内容
加密将在客户端使用以下基于 spring security-encryptors 的代码完成:
package at.wrwks.pipe.baumgmt.component.documentpreview; import static java.nio.charset.standardcharsets.utf_8; import java.net.urlencoder; import java.util.base64; import org.springframework.security.crypto.codec.hex; import org.springframework.security.crypto.encrypt.encryptors; import org.springframework.stereotype.component; @component public class secureresourceurlcomposer { public string compose(final string resource) { final var salt = new string(hex.encode("salt".getbytes(utf_8))); final var encryptor = encryptors.stronger("password", salt); final var encryptedresource = encryptor.encrypt(resource.getbytes(utf_8)); final var base64encodedencryptedresource = base64.getencoder().encodetostring(encryptedresource); final var urlencodedbase64encodedencryptedresource = urlencoder.encode(base64encodedencryptedresource, utf_8); return "https://target" + "?resource=" + urlencodedbase64encodedencryptedresource; } }
示例资源:aresource
url 和 base64 编码输出:https://target?resource=yeadq1toefbctkcaetjmw7zlydk4fa2waaspzsfqqxaxiq7bmuaruye%3d
解密失败,并显示 cipher: messageauthentication failed
在以下用 go 编写的后端代码中,位于 gcm.open
:
func decryptgcmaes32(ciphertext, key string) (plaintext string, err error) { if len(key) != 32 { msg := fmt.sprintf("unexpected key length (!= 32) '%s' %d", key, len(key)) err = errors.new(msg) log.warn(err) sentry.captureexception(err) return } keybytes := []byte(key) c, err := aes.newcipher(keybytes) if err != nil { log.warn("couldn't create a cipher block", err) sentry.captureexception(err) return } gcm, err := cipher.newgcm(c) if err != nil { log.warn("couldn't wrap in gcm mode", err) sentry.captureexception(err) return } noncesize := gcm.noncesize() if len(ciphertext) < noncesize { msg := fmt.sprintf("ciphertext shorter than nonce size %d < %d", len(ciphertext), noncesize) err = errors.new(msg) log.warn(err) sentry.captureexception(err) return } ciphertextbytes := []byte(ciphertext) nonce, ciphertextbytes := ciphertextbytes[:noncesize], ciphertextbytes[noncesize:] plaintextbytes, err := gcm.open(nil, nonce, ciphertextbytes, nil) if err != nil { log.warn("couldn't decode", err) sentry.captureexception(err) return } plaintext = string(plaintextbytes) return }
如果 iv
的加密和解密相同,则 go
中的以下测试仅有效
package main import ( "crypto/aes" "crypto/cipher" "crypto/rand" "crypto/sha1" "golang.org/x/crypto/pbkdf2" "log" "testing" ) var iv = make([]byte, 12) func TestCrypto(t *testing.T) { rand.Read(iv) encrypted, _ := encrypt("aResource") if decrypted, err := decrypt(encrypted); err != nil { log.Println(err) } else { log.Printf("DECRYPTED: %s\n", decrypted) } } func encrypt(secret string) (result []byte, err error) { salt := []byte("salt") key := pbkdf2.Key([]byte("b0226e4e9bef40d4b8aed039c208ae3e"), salt, 1024, 16, sha1.New) b, err := aes.NewCipher(key) aesgcm, err := cipher.NewGCM(b) result = aesgcm.Seal(nil, iv, []byte(secret), nil) return } func decrypt(ciphertext []byte) (result string, err error) { salt := []byte("salt") key := pbkdf2.Key([]byte("b0226e4e9bef40d4b8aed039c208ae3e"), salt, 1024, 16, sha1.New) b, err := aes.NewCipher(key) aesgcm, err := cipher.NewGCM(b) decrypted, err := aesgcm.Open(ciphertext[:0], iv, ciphertext, nil) result = string(decrypted) return }
解决方案
所以要点:
- 为了应用盐并派生正确的密钥
pbkdf2.key()
必须如下所示使用 - spring security 中的
nonce
(或initialization vector
)大小为 16 个字节,而go
中为 12 个字节
下面的摘录省略了错误处理,只是为了强调解决方案的本质:
const noncesize = 16 func decryptwithaes256gcmpbkdf2(cipherbytes []byte, password string, salt string) (string) { key := pbkdf2.key([]byte(password), []byte(salt), 1024, 32, sha1.new) c, _ := aes.newcipher(key) gcm, _ := cipher.newgcmwithnoncesize(c, noncesize) plaintextbytes, _ := gcm.open(nil, cipherbytes[:noncesize], cipherbytes[noncesize:], nil) return string(plaintextbytes) }
虽然问题涉及“更强”的解密。
我想给出一个“标准”解密的完整示例,以扩展之前的答案。
就我而言,任务是在 go 中实现以下 java 代码:
import org.springframework.security.crypto.encrypt.encryptors; import org.springframework.security.crypto.encrypt.textencryptor; ... private static final string salt = "123456789abcdef0"; // hex public static string decrypt(final string encryptedtext, final string password) { textencryptor encryptor = encryptors.text(password, salt); return encryptor.decrypt(encryptedtext); }
翻译成 go 的代码:
import ( "crypto/aes" "crypto/cipher" "crypto/sha1" "encoding/hex" "fmt" "strings" "golang.org/x/crypto/pbkdf2" ) func decryptWithAes256CbcPbkdf2(cipherBytes []byte, passwordBytes []byte, saltBytes []byte) string { key := pbkdf2.Key(passwordBytes, saltBytes, 1024, 32, sha1.New) if len(key) != 32 { panic(fmt.Sprintf("Unexpected key length (!= 32) '%s' %d", key, len(key))) } block, err := aes.NewCipher(key) if err != nil { panic(err) } if len(cipherBytes) < aes.BlockSize { panic("ciphertext too short") } iv := cipherBytes[:aes.BlockSize] cipherBytes = cipherBytes[aes.BlockSize:] if len(cipherBytes)%aes.BlockSize != 0 { panic("ciphertext is not a multiple of the block size") } mode := cipher.NewCBCDecrypter(block, iv) mode.CryptBlocks(cipherBytes, cipherBytes) return strings.Trim(string(cipherBytes), "\b") } func main() { cipherText := "05589d13fe6eedceae78fe099eed2f6b238ac7d4dbb62c281ccdc9401b24bb0c" cipherBytes, _ := hex.DecodeString(cipherText) passwordText := "12345" passwordBytes := []byte(passwordText) saltText := "123456789abcdef0" saltBytes, _ := hex.DecodeString(saltText) plainText := decryptWithAes256CbcPbkdf2(cipherBytes, passwordBytes, saltBytes) fmt.Println(plainText) }
今天关于《Spring Security 加密字符串 - Go 中解密失败》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!
版本声明
本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除

- 上一篇
- 交换指针:相当于 `std::unique_ptr::swap`

- 下一篇
- 使用闭包在 Go 中编写下一个排列,我的代码有什么问题
查看更多
最新文章
-
- Golang · Go问答 | 1年前 |
- 在读取缓冲通道中的内容之前退出
- 139浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 戈兰岛的全球 GOPRIVATE 设置
- 204浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 如何将结构作为参数传递给 xml-rpc
- 325浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 如何用golang获得小数点以下两位长度?
- 477浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 如何通过 client-go 和 golang 检索 Kubernetes 指标
- 486浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 将多个“参数”映射到单个可变参数的习惯用法
- 439浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 将 HTTP 响应正文写入文件后出现 EOF 错误
- 357浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 结构中映射的匿名列表的“复合文字中缺少类型”
- 352浏览 收藏
-
- Golang · Go问答 | 1年前 |
- NATS Jetstream 的性能
- 101浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 如何将复杂的字符串输入转换为mapstring?
- 440浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 相当于GoLang中Java将Object作为方法参数传递
- 212浏览 收藏
-
- Golang · Go问答 | 1年前 |
- 如何确保所有 goroutine 在没有 time.Sleep 的情况下终止?
- 143浏览 收藏
查看更多
课程推荐
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 484次学习
查看更多
AI推荐
-
- 笔灵AI生成答辩PPT
- 探索笔灵AI生成答辩PPT的强大功能,快速制作高质量答辩PPT。精准内容提取、多样模板匹配、数据可视化、配套自述稿生成,让您的学术和职场展示更加专业与高效。
- 24次使用
-
- 知网AIGC检测服务系统
- 知网AIGC检测服务系统,专注于检测学术文本中的疑似AI生成内容。依托知网海量高质量文献资源,结合先进的“知识增强AIGC检测技术”,系统能够从语言模式和语义逻辑两方面精准识别AI生成内容,适用于学术研究、教育和企业领域,确保文本的真实性和原创性。
- 41次使用
-
- AIGC检测-Aibiye
- AIbiye官网推出的AIGC检测服务,专注于检测ChatGPT、Gemini、Claude等AIGC工具生成的文本,帮助用户确保论文的原创性和学术规范。支持txt和doc(x)格式,检测范围为论文正文,提供高准确性和便捷的用户体验。
- 38次使用
-
- 易笔AI论文
- 易笔AI论文平台提供自动写作、格式校对、查重检测等功能,支持多种学术领域的论文生成。价格优惠,界面友好,操作简便,适用于学术研究者、学生及论文辅导机构。
- 50次使用
-
- 笔启AI论文写作平台
- 笔启AI论文写作平台提供多类型论文生成服务,支持多语言写作,满足学术研究者、学生和职场人士的需求。平台采用AI 4.0版本,确保论文质量和原创性,并提供查重保障和隐私保护。
- 41次使用
查看更多
相关文章
-
- GoLand调式动态执行代码
- 2023-01-13 502浏览
-
- 用Nginx反向代理部署go写的网站。
- 2023-01-17 502浏览
-
- Golang取得代码运行时间的问题
- 2023-02-24 501浏览
-
- 请问 go 代码如何实现在代码改动后不需要Ctrl+c,然后重新 go run *.go 文件?
- 2023-01-08 501浏览
-
- 如何从同一个 io.Reader 读取多次
- 2023-04-11 501浏览