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

org.bdware.doip.event.verified.HashUtil Maven / Gradle / Ivy

There is a newer version: 1.5.4
Show newest version
package org.bdware.doip.event.verified;

import org.bouncycastle.pqc.math.linearalgebra.ByteUtils;
import org.zz.gmhelper.SM3Util;

import java.nio.charset.StandardCharsets;

public class HashUtil {
    public static String hash(String content) {
        return ByteUtils.toHexString(SM3Util.hash(content.getBytes(StandardCharsets.UTF_8)));
    }

    public static boolean verify(String content, String hash) {
        return hash(content).equals(hash);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy