Package org.wildfly.security.jose.jwk
Class ECPublicJWK
- java.lang.Object
-
- org.wildfly.security.jose.jwk.JWK
-
- org.wildfly.security.jose.jwk.ECPublicJWK
-
public class ECPublicJWK extends JWK
An EC public JWK.- Since:
- 1.14.0
- Author:
- Stian Thorgersen
-
-
Constructor Summary
Constructors Constructor Description ECPublicJWK()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCrv()
String
getX()
String
getY()
void
setCrv(String crv)
void
setX(String x)
void
setY(String y)
-
Methods inherited from class org.wildfly.security.jose.jwk.JWK
getAlgorithm, getKeyId, getKeyType, getOtherClaims, getPublicKeyUse, setAlgorithm, setKeyId, setKeyType, setOtherClaims, setPublicKeyUse
-
-
-
-
Field Detail
-
EC
public static final String EC
- See Also:
- Constant Field Values
-
CRV
public static final String CRV
- See Also:
- Constant Field Values
-
X
public static final String X
- See Also:
- Constant Field Values
-
Y
public static final String Y
- See Also:
- Constant Field Values
-
crv
private String crv
-
x
private String x
-
y
private String y
-
-