Skip to content
This repository was archived by the owner on Feb 6, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/org/abstractj/kalium/NaCl.java
Original file line number Diff line number Diff line change
Expand Up @@ -409,9 +409,9 @@ int crypto_aead_aes256gcm_encrypt_afternm(
@In @Out byte[] state);

int crypto_aead_aes256gcm_decrypt_afternm(
@Out byte[] ct, @Out LongLongByReference ctLen, @In byte[] msg,
@In @u_int64_t int msgLen, @In byte[] ad,
@In @u_int64_t int adLen, @In byte[] nsec, @In byte[] npub,
@Out byte[] msg, @Out LongLongByReference msgLen, @In byte[] nsec,
@In byte[] ct, @In @u_int64_t int ctLen, @In byte[] ad,
@In @u_int64_t int adLen, @In byte[] npub,
@In @Out byte[] state);

// ---------------------------------------------------------------------
Expand Down