crypto_aead_aes256gcm_encrypt_detached_afternm method
int
crypto_aead_aes256gcm_encrypt_detached_afternm(
- Pointer<
UnsignedChar> c, - Pointer<
UnsignedChar> mac, - Pointer<
UnsignedLongLong> maclen_p, - Pointer<
UnsignedChar> m, - int mlen,
- Pointer<
UnsignedChar> ad, - int adlen,
- Pointer<
UnsignedChar> nsec, - Pointer<
UnsignedChar> npub, - Pointer<
crypto_aead_aes256gcm_state> ctx_,
Implementation
int crypto_aead_aes256gcm_encrypt_detached_afternm(
ffi.Pointer<ffi.UnsignedChar> c,
ffi.Pointer<ffi.UnsignedChar> mac,
ffi.Pointer<ffi.UnsignedLongLong> maclen_p,
ffi.Pointer<ffi.UnsignedChar> m,
int mlen,
ffi.Pointer<ffi.UnsignedChar> ad,
int adlen,
ffi.Pointer<ffi.UnsignedChar> nsec,
ffi.Pointer<ffi.UnsignedChar> npub,
ffi.Pointer<crypto_aead_aes256gcm_state> ctx_,
) {
return _crypto_aead_aes256gcm_encrypt_detached_afternm(
c,
mac,
maclen_p,
m,
mlen,
ad,
adlen,
nsec,
npub,
ctx_,
);
}