Sha256: 7a9dc64569db851491f48fd59d8490fe52329551a8b6ec44d2f7e9d65b4bdfbf
Contents?: true
Size: 814 Bytes
Versions: 33
Compression:
Stored size: 814 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 java.security.spec.AlgorithmParameterSpec; /** * Implementation of AlgorithmParameterSpec that holds the name of a named * EdDSA curve specification. * @author str4d * */ public class EdDSAGenParameterSpec implements AlgorithmParameterSpec { private final String name; public EdDSAGenParameterSpec(String stdName) { name = stdName; } public String getName() { return name; } }
Version data entries
33 entries across 29 versions & 2 rubygems