Package com.google.crypto.tink.jwt
Class JwtRsaSsaPssParameters.Algorithm
- java.lang.Object
-
- com.google.crypto.tink.jwt.JwtRsaSsaPssParameters.Algorithm
-
- Enclosing class:
- JwtRsaSsaPssParameters
@Immutable public static final class JwtRsaSsaPssParameters.Algorithm extends java.lang.ObjectThe algorithm to be used for the signature computation.
-
-
Field Summary
Fields Modifier and Type Field Description static JwtRsaSsaPssParameters.AlgorithmPS256RSASSA-PSS using SHA-256 and MGF1 with SHA-256static JwtRsaSsaPssParameters.AlgorithmPS384RSASSA-PSS using SHA-384 and MGF1 with SHA-384static JwtRsaSsaPssParameters.AlgorithmPS512RSASSA-PSS using SHA-512 and MGF1 with SHA-512
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetStandardName()java.lang.StringtoString()
-
-
-
Field Detail
-
PS256
public static final JwtRsaSsaPssParameters.Algorithm PS256
RSASSA-PSS using SHA-256 and MGF1 with SHA-256
-
PS384
public static final JwtRsaSsaPssParameters.Algorithm PS384
RSASSA-PSS using SHA-384 and MGF1 with SHA-384
-
PS512
public static final JwtRsaSsaPssParameters.Algorithm PS512
RSASSA-PSS using SHA-512 and MGF1 with SHA-512
-
-