JWKSRsaPrivateKey constructor

JWKSRsaPrivateKey({
  1. required String kid,
  2. required String alg,
  3. required String use,
  4. required JWKSRsaPrivateKeyKtyEnum kty,
  5. required String n,
  6. required String e,
  7. required String d,
  8. required String p,
  9. required String q,
  10. String? dp,
  11. String? dq,
  12. String? qi,
  13. List<String> x5c = const [],
  14. String? x5t,
  15. String? x5tHashS256,
  16. 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,
});