Sha256: a84c087dc07b511878de6a22021f6a93f5b8c4a1e9bd1a1030afab9491ca2fcb

Contents?: true

Size: 798 Bytes

Versions: 33

Compression:

Stored size: 798 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;

import net.i2p.crypto.eddsa.spec.EdDSAParameterSpec;

/**
 * Common interface for all EdDSA keys.
 * @author str4d
 */
public interface EdDSAKey {
    /**
     * The reported key algorithm for all EdDSA keys
     */
    String KEY_ALGORITHM = "EdDSA";

    /**
     * @return a parameter specification representing the EdDSA domain
     *         parameters for the key.
     */
    EdDSAParameterSpec getParams();
}

Version data entries

33 entries across 29 versions & 2 rubygems

Version Path
vagrant-unbundled-2.2.2.0 vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.4-java ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.4 ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.3-jruby ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.3 ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.2-jruby ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.2 ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.1-jruby ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.1 ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.0-jruby ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.2.0 ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.1.0-jruby ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
ed25519-1.1.0 ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java