WJLHashAlgorithm 2.0.0.jar的应用方法

在eclipse里导入下面封装的jar包:
WJLHashAlgorithm 2.0.0.jar
然后通过main测试,程序如下:

public static void main(String[] args) {
		//Input parameter is the output length of the Hash which is changeable 
		WJLHashAlgorithm hashAlgorithm=new WJLHashAlgorithm(32); // 32是指256位,这个值请按照字节数定义,可以是16*8=128位或者37*8=296位,意思是可以随意设定。
		//Add Secret key
		hashAlgorithm.setSecretKey(1);// 增加一个数字密钥,可以是0-999999的任意值。
		String string= hashAlgorithm.encrypt("abc");// "abc"是等待编码的字符串
		System.out.print(string);
	}

欢迎大家盲测。

你可能感兴趣的:(杰林码之加密算法,算法)