rsaPssSignPkcs8 method
Implementation
Future<Uint8List> rsaPssSignPkcs8({
required String hashAlgorithm,
required Uint8List pkcs8PrivateKey,
required Uint8List data,
int saltLength = 32,
}) {
return _crypto.rsaPssSign(
hashAlgorithm: hashAlgorithm,
pkcs8PrivateKey: pkcs8PrivateKey,
data: data,
saltLength: saltLength,
);
}