crypto_aead_aes256gcm_decrypt_afternm method
int
crypto_aead_aes256gcm_decrypt_afternm(
- Pointer<
UnsignedChar> m, - Pointer<
UnsignedLongLong> mlen_p, - Pointer<
UnsignedChar> nsec, - Pointer<
UnsignedChar> c, - int clen,
- Pointer<
UnsignedChar> ad, - int adlen,
- Pointer<
UnsignedChar> npub, - Pointer<
crypto_aead_aes256gcm_state> ctx_,
Implementation
int crypto_aead_aes256gcm_decrypt_afternm(
ffi.Pointer<ffi.UnsignedChar> m,
ffi.Pointer<ffi.UnsignedLongLong> mlen_p,
ffi.Pointer<ffi.UnsignedChar> nsec,
ffi.Pointer<ffi.UnsignedChar> c,
int clen,
ffi.Pointer<ffi.UnsignedChar> ad,
int adlen,
ffi.Pointer<ffi.UnsignedChar> npub,
ffi.Pointer<crypto_aead_aes256gcm_state> ctx_,
) {
return _crypto_aead_aes256gcm_decrypt_afternm(
m,
mlen_p,
nsec,
c,
clen,
ad,
adlen,
npub,
ctx_,
);
}