JWKSRsaPrivateKey constructor
JWKSRsaPrivateKey({
- required String kid,
- required String alg,
- required String use,
- required JWKSRsaPrivateKeyKtyEnum kty,
- required String n,
- required String e,
- required String d,
- required String p,
- required String q,
- String? dp,
- String? dq,
- String? qi,
- List<
String> x5c = const [], - String? x5t,
- String? x5tHashS256,
- String? x5u,
Returns a new JWKSRsaPrivateKey instance.
Implementation
JWKSRsaPrivateKey({
required this.kid,
required this.alg,
required this.use,
required this.kty,
required this.n,
required this.e,
required this.d,
required this.p,
required this.q,
this.dp,
this.dq,
this.qi,
this.x5c = const [],
this.x5t,
this.x5tHashS256,
this.x5u,
});