All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jd.blockchain.utils.security.Hasher Maven / Gradle / Ivy

The newest version!
package com.jd.blockchain.utils.security;

public interface Hasher {

	/**
	 * 追加要一起计算哈希的数据;
	 * 
	 * @param bytes
	 */
	void update(byte[] bytes);
	
	/**
	 * 追加要一起计算哈希的数据;
	 * 
	 * @param bytes
	 */
	void update(byte[] bytes, int offset, int len);

	/**
	 * 完成哈希计算并返回结果;
	 * 
	 * @return
	 */
	byte[] complete();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy