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

org.xbib.net.security.eddsa.spec.EdDSANamedCurveSpec Maven / Gradle / Ivy

The newest version!
package org.xbib.net.security.eddsa.spec;

import org.xbib.net.security.eddsa.math.Curve;
import org.xbib.net.security.eddsa.math.GroupElement;
import org.xbib.net.security.eddsa.math.ScalarOps;

/**
 * EdDSA Curve specification that can also be referred to by name.
 */
public class EdDSANamedCurveSpec extends EdDSAParameterSpec {

    private final String name;

    public EdDSANamedCurveSpec(String name, Curve curve,
                               String hashAlgo, ScalarOps sc, GroupElement B) {
        super(curve, hashAlgo, sc, B);
        this.name = name;
    }

    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy