Sha256: c1db933fec7d957045e52269e9261ce2d9f2ac0686a13882547679f6df1b2ba5
Contents?: true
Size: 956 Bytes
Versions: 33
Compression:
Stored size: 956 Bytes
Contents
/** * EdDSA-Java by str4d * * To the extent possible under law, the person who associated CC0 with * EdDSA-Java has waived all copyright and related or neighboring rights * to EdDSA-Java. * * You should have received a copy of the CC0 legalcode along with this * work. If not, see <https://creativecommons.org/publicdomain/zero/1.0/>. * */ package net.i2p.crypto.eddsa.spec; import net.i2p.crypto.eddsa.math.Curve; import net.i2p.crypto.eddsa.math.GroupElement; import net.i2p.crypto.eddsa.math.ScalarOps; /** * EdDSA Curve specification that can also be referred to by name. * @author str4d * */ 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; } }
Version data entries
33 entries across 29 versions & 2 rubygems