Uses of Class
org.forgerock.json.jose.jwk.RsaJWK.PrimesInfo
-
Packages that use RsaJWK.PrimesInfo Package Description org.forgerock.json.jose.jwk Classes and interfaces for creating and manipulating JWKs. -
-
Uses of RsaJWK.PrimesInfo in org.forgerock.json.jose.jwk
Methods in org.forgerock.json.jose.jwk that return RsaJWK.PrimesInfo Modifier and Type Method Description static RsaJWK.PrimesInfo
RsaJWK.PrimesInfo. parse(JsonValue json)
Parses a PrimesInfo from a jsonValue Object.Methods in org.forgerock.json.jose.jwk that return types with arguments of type RsaJWK.PrimesInfo Modifier and Type Method Description List<RsaJWK.PrimesInfo>
RsaJWK. getOtherPrimesInfo()
Get the RSA other factors value.Method parameters in org.forgerock.json.jose.jwk with type arguments of type RsaJWK.PrimesInfo Modifier and Type Method Description RsaJWK.Builder
RsaJWK.Builder. otherPrimesInfo(List<RsaJWK.PrimesInfo> otherPrimesInfo)
Set the RSA other factors value.Constructor parameters in org.forgerock.json.jose.jwk with type arguments of type RsaJWK.PrimesInfo Constructor Description RsaJWK(String use, String alg, String kid, String modulus, String publicExponent, String privateExponent, String primeP, String primeQ, String primePExponent, String primeQExponent, String crtCoefficient, List<RsaJWK.PrimesInfo> otherPrimesInfo, String x5u, String x5t, List<String> x5c)
Deprecated.Use the builder instead.
-