verify method

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

Verify the signature value.

Implementation

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