RsaKeyPairData constructor

RsaKeyPairData({
  1. required List<int> n,
  2. required List<int> e,
  3. required List<int> d,
  4. required List<int> p,
  5. required List<int> q,
  6. List<int>? dp,
  7. List<int>? dq,
  8. List<int>? qi,
})

Implementation

RsaKeyPairData({
  required this.n,
  required this.e,
  required this.d,
  required this.p,
  required this.q,
  this.dp,
  this.dq,
  this.qi,
})  : publicKey = RsaPublicKey(e: e, n: n),
      super(type: KeyPairType.rsa);