Class SkEcdsaPublicKey
- java.lang.Object
-
- org.apache.sshd.common.config.keys.u2f.SkEcdsaPublicKey
-
- All Implemented Interfaces:
Serializable
,Key
,PublicKey
,SecurityKeyPublicKey<ECPublicKey>
public class SkEcdsaPublicKey extends Object implements SecurityKeyPublicKey<ECPublicKey>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SkEcdsaPublicKey(String appName, boolean noTouchRequired, ECPublicKey delegatePublicKey)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlgorithm()
String
getAppName()
ECPublicKey
getDelegatePublicKey()
byte[]
getEncoded()
String
getFormat()
boolean
isNoTouchRequired()
String
toString()
-
-
-
Field Detail
-
ALGORITHM
public static final String ALGORITHM
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SkEcdsaPublicKey
public SkEcdsaPublicKey(String appName, boolean noTouchRequired, ECPublicKey delegatePublicKey)
-
-
Method Detail
-
getAlgorithm
public String getAlgorithm()
- Specified by:
getAlgorithm
in interfaceKey
-
getEncoded
public byte[] getEncoded()
- Specified by:
getEncoded
in interfaceKey
-
getAppName
public String getAppName()
- Specified by:
getAppName
in interfaceSecurityKeyPublicKey<ECPublicKey>
-
isNoTouchRequired
public boolean isNoTouchRequired()
- Specified by:
isNoTouchRequired
in interfaceSecurityKeyPublicKey<ECPublicKey>
-
getDelegatePublicKey
public ECPublicKey getDelegatePublicKey()
- Specified by:
getDelegatePublicKey
in interfaceSecurityKeyPublicKey<ECPublicKey>
-
-