国密算法 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

Flexible Pattern Matching in Strings

Flexible Pattern Matching in Strings

Gonzalo Navarro、Mathieu Raffinot / Cambridge University Press / 2007-7-30 / USD 64.99

String matching problems range from the relatively simple task of searching a single text for a string of characters to searching a database for approximate occurrences of a complex pattern. Recent ye......一起来看看 《Flexible Pattern Matching in Strings》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

随机密码生成器
随机密码生成器

多种字符组合密码