crypto_aead_aes256gcm_beforenm method

int crypto_aead_aes256gcm_beforenm(
  1. Pointer<crypto_aead_aes256gcm_state> ctx_,
  2. Pointer<UnsignedChar> k
)

Implementation

int crypto_aead_aes256gcm_beforenm(
  ffi.Pointer<crypto_aead_aes256gcm_state> ctx_,
  ffi.Pointer<ffi.UnsignedChar> k,
) {
  return _crypto_aead_aes256gcm_beforenm(
    ctx_,
    k,
  );
}