- 授权协议: Apache
- 开发语言: Java JavaScript
- 操作系统: 跨平台
- 软件首页: http://git.oschina.net/noarm/GuoMiSuanFaSM4-SM3-SM2
- 软件文档: http://git.oschina.net/noarm/GuoMiSuanFaSM4-SM3-SM2
软件介绍
国密算法 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);
}
Python语言及其应用
[美] Bill Lubanovic / 丁嘉瑞、梁杰、禹常隆 / 人民邮电出版社 / 2016-1 / 79.00元
本书介绍Python 语言的基础知识及其在各个领域的具体应用,基于最新版本3.x。书中首先介绍了Python 语言的一些必备基本知识,然后介绍了在商业、科研以及艺术领域使用Python 开发各种应用的实例。文字简洁明了,案例丰富实用,是一本难得的Python 入门手册。一起来看看 《Python语言及其应用》 这本书的介绍吧!
