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

ai.databand.id.Sha1Long Maven / Gradle / Ivy

There is a newer version: 1.0.26.1
Show newest version
package ai.databand.id;

import java.util.Base64;

public class Sha1Long {

    private final String value;

    public Sha1Long(String namespace, String value) {
        this.value = Base64.getEncoder().encodeToString(new Sha1(namespace, value).value());
    }

    @Override
    public String toString() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy