PrivateKeyEntry constructor
PrivateKeyEntry({})
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;