On Thu, 8 Dec 2022 16:33:06 GMT, Daniel Jeliński wrote:
> This patch modifies `CipherInputStream` to avoid pointless memory allocations
> when decrypting data using AEAD ciphers.
>
> `Cipher.update` on AEAD decryption does not output any data; instead, all
> data is buffered and returned in on
On Thu, 8 Dec 2022 16:33:06 GMT, Daniel Jeliński wrote:
> This patch modifies `CipherInputStream` to avoid pointless memory allocations
> when decrypting data using AEAD ciphers.
>
> `Cipher.update` on AEAD decryption does not output any data; instead, all
> data is buffered and returned in on
On Thu, 8 Dec 2022 16:33:06 GMT, Daniel Jeliński wrote:
> This patch modifies `CipherInputStream` to avoid pointless memory allocations
> when decrypting data using AEAD ciphers.
>
> `Cipher.update` on AEAD decryption does not output any data; instead, all
> data is buffered and returned in on
On Thu, 8 Dec 2022 16:33:06 GMT, Daniel Jeliński wrote:
> This patch modifies `CipherInputStream` to avoid pointless memory allocations
> when decrypting data using AEAD ciphers.
>
> `Cipher.update` on AEAD decryption does not output any data; instead, all
> data is buffered and returned in on
This patch modifies `CipherInputStream` to avoid pointless memory allocations
when decrypting data using AEAD ciphers.
`Cipher.update` on AEAD decryption does not output any data; instead, all data
is buffered and returned in one shot from `doFinal` call. On the other hand,
the value returned b