溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring Cloud Config對(duì)特殊字符加密處理的方法詳解

發(fā)布時(shí)間:2020-09-21 19:18:27 來源:腳本之家 閱讀:207 作者:程序猿DD 欄目:編程語言

前言

之前寫過一篇關(guān)于配置中心對(duì)配置內(nèi)容加密解密的介紹:《Spring Cloud構(gòu)建微服務(wù)架構(gòu):分布式配置中心(加密解密) 》。在這篇文章中,存在一個(gè)問題:當(dāng)被加密內(nèi)容包含一些諸如=、+這些特殊字符的時(shí)候,使用上篇文章中提到的類似這樣的命令curl localhost:7001/encrypt -d去加密和解密的時(shí)候,會(huì)發(fā)現(xiàn)特殊字符丟失的情況。

比如下面這樣的情況:

$ curl localhost:7001/encrypt -d eF34+5edo=
a34c76c4ddab706fbcae0848639a8e0ed9d612b0035030542c98997e084a7427
$ curl localhost:7001/decrypt -d a34c76c4ddab706fbcae0848639a8e0ed9d612b0035030542c98997e084a7427
eF34 5edo

可以看到,經(jīng)過加密解密之后,又一些特殊字符丟失了。由于之前在這里也小坑了一下,所以抽空寫出來分享一下,給遇到同樣問題的朋友,希望對(duì)您有幫助。

問題原因與處理方法

其實(shí)關(guān)于這個(gè)問題的原因在官方文檔中是有具體說明的,只能怪自己太過粗心了,具體如下:

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的時(shí)候,正確的姿勢應(yīng)該是:

$ 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=

那么,如果我們自己寫工具來加密解密的時(shí)候怎么玩呢?下面舉個(gè)OkHttp的例子,以供參考:

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();
}

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問大家可以留言交流,謝謝大家對(duì)億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI