Class SkED25519PublicKey
- java.lang.Object
-
- org.apache.sshd.common.config.keys.u2f.SkED25519PublicKey
-
- All Implemented Interfaces:
java.io.Serializable,java.security.Key,java.security.PublicKey,SecurityKeyPublicKey<net.i2p.crypto.eddsa.EdDSAPublicKey>
public class SkED25519PublicKey extends java.lang.Object implements SecurityKeyPublicKey<net.i2p.crypto.eddsa.EdDSAPublicKey>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringALGORITHMprivate java.lang.StringappNameprivate net.i2p.crypto.eddsa.EdDSAPublicKeydelegatePublicKeyprivate booleannoTouchRequiredprivate static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description SkED25519PublicKey(java.lang.String appName, boolean noTouchRequired, net.i2p.crypto.eddsa.EdDSAPublicKey delegatePublicKey)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAlgorithm()java.lang.StringgetAppName()net.i2p.crypto.eddsa.EdDSAPublicKeygetDelegatePublicKey()byte[]getEncoded()java.lang.StringgetFormat()booleanisNoTouchRequired()java.lang.StringtoString()
-
-
-
Field Detail
-
ALGORITHM
public static final java.lang.String ALGORITHM
- See Also:
- Constant Field Values
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
appName
private final java.lang.String appName
-
noTouchRequired
private final boolean noTouchRequired
-
delegatePublicKey
private final net.i2p.crypto.eddsa.EdDSAPublicKey delegatePublicKey
-
-
Method Detail
-
getAlgorithm
public java.lang.String getAlgorithm()
- Specified by:
getAlgorithmin interfacejava.security.Key
-
getFormat
public java.lang.String getFormat()
- Specified by:
getFormatin interfacejava.security.Key
-
getEncoded
public byte[] getEncoded()
- Specified by:
getEncodedin interfacejava.security.Key
-
getAppName
public java.lang.String getAppName()
- Specified by:
getAppNamein interfaceSecurityKeyPublicKey<net.i2p.crypto.eddsa.EdDSAPublicKey>
-
isNoTouchRequired
public boolean isNoTouchRequired()
- Specified by:
isNoTouchRequiredin interfaceSecurityKeyPublicKey<net.i2p.crypto.eddsa.EdDSAPublicKey>
-
getDelegatePublicKey
public net.i2p.crypto.eddsa.EdDSAPublicKey getDelegatePublicKey()
- Specified by:
getDelegatePublicKeyin interfaceSecurityKeyPublicKey<net.i2p.crypto.eddsa.EdDSAPublicKey>
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-