sign method

  1. @MPI(name: "mesh.crypt.sign")
Future<Uint8List?> sign(
  1. Uint8List buf,
  2. Map<String, Uint8List> keys, {
  3. Context? ctx,
})

Sign compute the signature value.

Implementation

@MPI(name: "mesh.crypt.sign")
Future<Uint8List?> sign(Uint8List buf, Map<String, Uint8List> keys, {Context? ctx}) {
  throw UnimplementedError('sign() has not been implemented.');
}