Future<Uint8List> sign(String message, Uint8List privateKey) async { return Sodium.cryptoSign(Uint8List.fromList(message.codeUnits), privateKey); }