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

com.weavechain.core.encrypt.HashFunction Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.weavechain.core.encrypt;

public interface HashFunction {

    byte[] digest(String data);

    String hexDigest(String data);

    String b58Digest(String data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy