时间:2021-05-02
前言
之前写过一篇关于配置中心对配置内容加密解密的介绍:《spring cloud构建微服务架构:分布式配置中心(加密解密) 》。在这篇文章中,存在一个问题:当被加密内容包含一些诸如=、+这些特殊字符的时候,使用上篇文章中提到的类似这样的命令curl localhost:7001/encrypt -d去加密和解密的时候,会发现特殊字符丢失的情况。
比如下面这样的情况:
? 1 2 3 4 $ curl localhost:7001/encrypt -d ef34+5edo= a34c76c4ddab706fbcae0848639a8e0ed9d612b0035030542c98997e084a7427 $ curl localhost:7001/decrypt -d a34c76c4ddab706fbcae0848639a8e0ed9d612b0035030542c98997e084a7427 ef34 5edo可以看到,经过加密解密之后,又一些特殊字符丢失了。由于之前在这里也小坑了一下,所以抽空写出来分享一下,给遇到同样问题的朋友,希望对您有帮助。
问题原因与处理方法
其实关于这个问题的原因在官方文档中是有具体说明的,只能怪自己太过粗心了,具体如下:
if you are testing like this with curl, then use --data-urlencode (instead of -d) or set an explicit content-type: text/plain to make sure curl encodes the data correctly when there are special characters (‘+' is particularly tricky).
所以,在使用curl的时候,正确的姿势应该是:
? 1 2 3 4 5 $ curl localhost:7001/encrypt -h 'content-type:text/plain' --data-urlencode "ef34+5edo=" 335e618a02a0ff3dc1377321885f484fb2c19a499423ee7776755b875997b033 $ curl localhost:7001/decrypt -h 'content-type:text/plain' --data-urlencode "335e618a02a0ff3dc1377321885f484fb2c19a499423ee7776755b875997b033" ef34+5edo=那么,如果我们自己写工具来加密解密的时候怎么玩呢?下面举个okhttp的例子,以供参考:
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 private string encrypt(string value) { string url = "http://localhost:7001/encrypt"; request request = new request.builder() .url(url) .post(requestbody.create(mediatype.parse("text/plain"), value.getbytes())) .build(); call call = okhttpclient.newcall(request); response response = call.execute(); responsebody responsebody = response.body(); return responsebody.string(); } private string decrypt(string value) { string url = "http://localhost:7001/decrypt"; request request = new request.builder() .url(url) .post(requestbody.create(mediatype.parse("text/plain"), value.getbytes())) .build(); call call = okhttpclient.newcall(request); response response = call.execute(); responsebody responsebody = response.body(); return responsebody.string(); }总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://blog.didispace.com/spring-cloud-config-sp-char-encrypt/
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在Spring-Cloud-Gateway之请求处理流程文中我们了解最终网关是将请求交给过滤器链表进行处理,接下来我们阅读Spring-Cloud-Gatewa
1.官方文档https://cloud.spring.io/spring-cloud-static/spring-cloud-openfeign/2.2.2.R
spring-cloud-config配置中心实现SpringCloudConfig用于为分布式系统中的基础设施和微服务应用提供集中化的外部配置支持,分为ser
文档地址https://github.com/alibaba/spring-cloud-alibaba/blob/master/spring-cloud-ali
问题描述我们公司的项目是基于SpringCloud开发的微服务,用到了Spring-Cloud-Config作为微服务统一的配置中心,可以将散落在各个服务的配置