您现在的位置是:首页 > 技术教程 正文

【开发问题】vue的前端和java的后台,用sm4,实现前台加密,后台解密

admin 阅读: 2024-03-30
后台-插件-广告管理-内容页头部广告(手机)

sm4加密

  • vue
    • 引入的包
    • 代码加密解密
  • java
    • maven
    • 代码
    • 运行结果

vue

引入的包

npm install sm-crypto
  • 1

代码加密解密

加密:

key :代表着密钥,必须是16 字节的十六进制密钥
password :加密前的密码
sm4Password :代表sm4加密后的密文

const sm4 = require('sm-crypto').sm4 const key = '0123456789abcdeffedcba9876543210' // 16 字节的十六进制密钥 const sm4Password = sm4.encrypt(password, key)
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述
解密:

key :代表着密钥,必须是16 字节的十六进制密钥
sm4Password:解密前的密文
password:解密后的密码

const sm4 = require('sm-crypto').sm4 const key = '0123456789abcdeffedcba9876543210' // 16 字节的十六进制密钥 const password= sm4.decrypt(sm4Password , key)
  • 1
  • 2
  • 3
  • 4

java

maven

<dependency> <groupId>cn.hutoolgroupId> <artifactId>hutool-allartifactId> <version>5.8.22version> dependency> <dependency> <groupId>org.bouncycastlegroupId> <artifactId>bcprov-jdk15onartifactId> <version>1.70version> dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

代码

加密和解密:

import cn.hutool.crypto.symmetric.SymmetricCrypto; import org.bouncycastle.jce.provider.BouncyCastleProvider; import org.bouncycastle.util.encoders.Hex; import java.security.Security; public class SM4DecryptionExample { static { Security.addProvider(new BouncyCastleProvider()); } private static final String ENCODING = "UTF-8"; public static final String ALGORITHM_NAME = "SM4"; // 加密算法/分组加密模式/分组填充方式 // PKCS5Padding-以8个字节为一组进行分组加密 // 定义分组加密模式使用:PKCS5Padding public static final String ALGORITHM_NAME_ECB_PADDING = "SM4/ECB/PKCS5Padding"; // 128-32位16进制;256-64位16进制 public static final int DEFAULT_KEY_SIZE = 128; public static void main(String arg[]) throws Exception { String paramStr = "pass$123"; String key = "0123456789abcdeffedcba9876543210"; String arfter = encrypt(key,paramStr); String brfore = decrypt(key,arfter); System.out.println("明文:---------------------"+paramStr); System.out.println("加密后密文:---------------------"+arfter); System.out.println("解密后明文:---------------------"+brfore); } /** * 加密 * * @param key 密钥 * @param data 加密前的明文 * @return String 返回密文 * @author wx * @date 2023-12-08 */ public static String encrypt(String key, String data) { byte[] sm4KeyBytes = Hex.decode(key); SymmetricCrypto sm4 = new SymmetricCrypto("SM4/ECB/PKCS5Padding", sm4KeyBytes); return sm4.encryptHex(data).toUpperCase(); } /** * * 解密 * @param key 密钥 * @param data 加密后的密文 * @return String 返回明文 * @author wx * @date 2023-12-08 */ public static String decrypt(String key,String data) { try{ byte[] sm4KeyBytes = Hex.decode(key); SymmetricCrypto sm4 = new SymmetricCrypto("SM4/ECB/PKCS5Padding", sm4KeyBytes); return sm4.decryptStr(data); }catch (Exception e){ return data; } } }
  • 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
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77

运行结果

在这里插入图片描述

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索