signPKCS1v15Bytes static method
Implementation
static Future<Uint8List> signPKCS1v15Bytes(
Uint8List message, Hash hash, String privateKey) async {
var request = SignPKCS1v15BytesRequest()
..message = message
..hash = hash
..privateKey = privateKey;
return await _bytesResponse("signPKCS1v15Bytes", request.writeToBuffer());
}