You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The output length in the xchacha20poly1305 functions such as crypto_aead_xchacha20poly1305_ietf_encrypt is an unsigned long long in C (64-bit) but an int (signed 32-bit) here in the wrapper. This can lead to overflows in the output length (unlikely with this interface, but still an issue).
The text was updated successfully, but these errors were encountered:
The output length in the
xchacha20poly1305
functions such ascrypto_aead_xchacha20poly1305_ietf_encrypt
is anunsigned long long
in C (64-bit) but an int (signed 32-bit) here in the wrapper. This can lead to overflows in the output length (unlikely with this interface, but still an issue).The text was updated successfully, but these errors were encountered: