Package com.google.crypto.tink.jwt
Class JwtEcdsaParameters.Algorithm
- java.lang.Object
-
- com.google.crypto.tink.jwt.JwtEcdsaParameters.Algorithm
-
- Enclosing class:
- JwtEcdsaParameters
@Immutable public static final class JwtEcdsaParameters.Algorithm extends java.lang.ObjectThe algorithm to be used for the signature computation.
-
-
Field Summary
Fields Modifier and Type Field Description static JwtEcdsaParameters.AlgorithmES256ECDSA using P-256 and SHA-256static JwtEcdsaParameters.AlgorithmES384ECDSA using P-384 and SHA-384static JwtEcdsaParameters.AlgorithmES512ECDSA using P-521 and SHA-512
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetStandardName()java.lang.StringtoString()
-
-
-
Field Detail
-
ES256
public static final JwtEcdsaParameters.Algorithm ES256
ECDSA using P-256 and SHA-256
-
ES384
public static final JwtEcdsaParameters.Algorithm ES384
ECDSA using P-384 and SHA-384
-
ES512
public static final JwtEcdsaParameters.Algorithm ES512
ECDSA using P-521 and SHA-512
-
-