Uses of Class
net.i2p.crypto.eddsa.spec.EdDSAParameterSpec

Packages that use EdDSAParameterSpec
net.i2p.crypto.eddsa Java implementation of EdDSA, a digital signature scheme using a variant of elliptic curve cryptography based on Twisted Edwards curves. 
net.i2p.crypto.eddsa.spec Specifications for curves and keys, and a table for named curves, initially containing only the 25519 curve "ed25519-sha-512". 
 

Uses of EdDSAParameterSpec in net.i2p.crypto.eddsa
 

Methods in net.i2p.crypto.eddsa that return EdDSAParameterSpec
 EdDSAParameterSpec EdDSAKey.getParams()
          return a parameter specification representing the EdDSA domain parameters for the key.
 EdDSAParameterSpec EdDSAPrivateKey.getParams()
           
 EdDSAParameterSpec EdDSAPublicKey.getParams()
           
 

Uses of EdDSAParameterSpec in net.i2p.crypto.eddsa.spec
 

Subclasses of EdDSAParameterSpec in net.i2p.crypto.eddsa.spec
 class EdDSANamedCurveSpec
          EdDSA Curve specification that can also be referred to by name.
 

Methods in net.i2p.crypto.eddsa.spec that return EdDSAParameterSpec
 EdDSAParameterSpec EdDSAPrivateKeySpec.getParams()
           
 EdDSAParameterSpec EdDSAPublicKeySpec.getParams()
           
 

Constructors in net.i2p.crypto.eddsa.spec with parameters of type EdDSAParameterSpec
EdDSAPrivateKeySpec(byte[] seed, byte[] h, byte[] a, GroupElement A, EdDSAParameterSpec spec)
           
EdDSAPrivateKeySpec(byte[] seed, EdDSAParameterSpec spec)
           
EdDSAPublicKeySpec(byte[] pk, EdDSAParameterSpec spec)
           
EdDSAPublicKeySpec(GroupElement A, EdDSAParameterSpec spec)