Replies: 1 comment 1 reply
-
There is no streaming in this module at this moment. The underlying Web APIs don't support streaming anyway. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! Does anyone here have experience with encrypting/decrypting large files using the JOSE framework? Most implementations use
strings
orUint8Array
s, which means that all plaintext and ciphertext must be kept in memory during encryption/decryption.I was thinking about using the Streams API to allow encryption without keeping all the plaintext and ciphertext in memory.
Has anyone used JOSE for large files and have some tips?
Beta Was this translation helpful? Give feedback.
All reactions