cryptoSignUpdate static method

void cryptoSignUpdate(
  1. Pointer<Uint8> state,
  2. Uint8List m
)

Implementation

static void cryptoSignUpdate(Pointer<Uint8> state, Uint8List m) {
  final _m = m.toPointer();
  try {
    _cryptoSign
        .crypto_sign_update(state, _m, m.length)
        .mustSucceed('crypto_sign_update');
  } finally {
    calloc.free(_m);
  }
}