open static method

Uint8List open(
  1. Uint8List signedMessage,
  2. Uint8List publicKey
)

Checks the signed message using given public key and returns the message with the signature removed.

Implementation

static Uint8List open(Uint8List signedMessage, Uint8List publicKey) =>
    Sodium.cryptoSignOpen(signedMessage, publicKey);