cryptoOnetimeauthUpdate static method

void cryptoOnetimeauthUpdate(
  1. Pointer<Uint8> state,
  2. Uint8List i
)

Implementation

static void cryptoOnetimeauthUpdate(Pointer<Uint8> state, Uint8List i) {
  final _in = i.toPointer();
  try {
    _cryptoOnetimeauth
        .crypto_onetimeauth_update(state, _in, i.length)
        .mustSucceed('crypto_onetimeauth_update');
  } finally {
    calloc.free(_in);
  }
}