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
{{ message }}
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
RSA has a maximum plaintext size in bytes, as documented here. To overcome this maximum, two approaches present themselves:
Chunk plaintexts according to the supported maximums, and support the concatenation of plaintexts to reconstitute long secrets.
Use envelope encryption, whereby RSA is used to encrypt a symmetric encryption key corresponding to an encryption scheme without byte limits (e.g. AES)
From a brief discussion F2F it was decided that option 1 would be the simplest for now.
The text was updated successfully, but these errors were encountered:
RSA has a maximum plaintext size in bytes, as documented here. To overcome this maximum, two approaches present themselves:
From a brief discussion F2F it was decided that option 1 would be the simplest for now.
The text was updated successfully, but these errors were encountered: