PrivateKeyEntry constructor

PrivateKeyEntry({
  1. required String alias,
  2. required int timestamp,
  3. required String storeType,
  4. required List<(String, Uint8List)> certChain,
  5. Uint8List? encryptedData,
  6. Uint8List? privateKey,
  7. Uint8List? privateKeyPkcs8,
  8. List<int>? algorithmOid,
})

Implementation

PrivateKeyEntry({
  required super.alias,
  required super.timestamp,
  required super.storeType,
  required this.certChain,
  Uint8List? encryptedData,
  Uint8List? privateKey,
  Uint8List? privateKeyPkcs8,
  List<int>? algorithmOid,
})  : encryptedDataBytes = encryptedData,
      rawPrivateKey = privateKey,
      pkcs8PrivateKey = privateKeyPkcs8,
      keyAlgorithmOid = algorithmOid;