瀏覽代碼

生成原世界相机授权码

lyhzzz 2 年之前
父節點
當前提交
0828555470
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/fdkankan/manage/test/TestController.java

+ 1 - 1
src/main/java/com/fdkankan/manage/test/TestController.java

@@ -58,7 +58,7 @@ public class TestController {
     public ResultData createCameraAuthCode(@RequestParam(required = false) String snCode) throws Exception {
         RsaUtils rsa = new RsaUtils();
 
-        String ciphertext = rsa.encipher("4DKKPRO_"+snCode, CacheUtil.publicKey);
+        String ciphertext = rsa.encipher("4DKKPRO_"+snCode.toUpperCase(), CacheUtil.publicKey);
         System.out.println(String.format("密文:"+ciphertext));
 
         return ResultData.ok(ciphertext);