org.bcos.web3j.crypto.HashInterface Maven / Gradle / Ivy
package org.bcos.web3j.crypto;
/**
* Created by websterchen on 2018/3/4.
*/
public interface HashInterface {
String hash(String hexInput);
byte[] hash(byte[] input, int offset, int length);
byte[] hash(byte[] input);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy