cryptoOnetimeauthFinal static method

Uint8List cryptoOnetimeauthFinal(
  1. Pointer<Uint8> state
)

Implementation

static Uint8List cryptoOnetimeauthFinal(Pointer<Uint8> state) {
  final _out = calloc<Uint8>(cryptoOnetimeauthBytes);
  try {
    _cryptoOnetimeauth.crypto_onetimeauth_final(state, _out);
    return _out.toList(cryptoOnetimeauthBytes);
  } finally {
    calloc.free(_out);
  }
}