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

de.mkammerer.argon2.HashResult Maven / Gradle / Ivy

There is a newer version: 2.11
Show newest version
package de.mkammerer.argon2;

/**
 * Hash result, containing both the raw and the encoded representation.
 */
public class HashResult {
    private final byte[] raw;
    private final String encoded;

    public HashResult(byte[] raw, String encoded) {
        this.raw = raw;
        this.encoded = encoded;
    }

    public byte[] getRaw() {
        return raw;
    }

    public String getEncoded() {
        return encoded;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy