国密算法 JS 和 JAVA 版本 GuoMiSuanFa

码农软件 · 软件分类 · 加密/解密软件包 · 2019-09-30 15:29:23

软件介绍

国密算法 SM4 SM3 SM2,JS 版本、JAVA 版本。

var input = "待加密";
   var key = "admin#$%^";
   
   //加密
	ec = SM4.encode({
		input:input,
		key:key
	});
	
	console.log('加密:'+ec);
	//解密
	var dc = SM4.decode({
		input:ec,
		key:key
	});
	console.log('解密:'+dc);
public static void main(String[] args) throws IOException {
		String s = new SM4().encode("待加密", "admin#$%^");
		System.out.println(s);
		String j = new SM4().decode(s, "admin#$%^");
		System.out.println(j);
	}

本文地址:https://codercto.com/soft/d/15738.html

Beginning iPhone and iPad Web Apps

Beginning iPhone and iPad Web Apps

Chris Apers、Daniel Paterson / Apress / 2010-12-15 / USD 39.99

It seems that everyone and her sister has developed an iPhone App—everyone except you, the hard-working web professional. And now with the introduction of the iPad, you may even feel farther behind. B......一起来看看 《Beginning iPhone and iPad Web Apps》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

SHA 加密
SHA 加密

SHA 加密工具

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具