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

com.oceanprotocol.secretstore.helpers.EncryptionHelper Maven / Gradle / Ivy

There is a newer version: 0.1.4
Show newest version
package com.oceanprotocol.secretstore.helpers;

/**
 * Encryption Helper functions
 */
public abstract class EncryptionHelper {

    /**
     * Calculates the SHA-256 digest and returns the value as a hex string
     * @param input string to encrypt
     * @return encrypted string in SHA-256
     */
    public static String encryptSHA256(String input)    {
        return org.apache.commons.codec.digest.DigestUtils.sha256Hex(input);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy