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

com.genexus.cryptography.hashing.IGXIncrementalHashing Maven / Gradle / Ivy

package com.genexus.cryptography.hashing;

public interface IGXIncrementalHashing {

        void initData(String text);
        void appendRawData(String text);
        void appendData(String text);
	String getHashRaw();
	String getHash();        
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy