Replies: 1 comment
-
Yes, in files we don't typically perform base 64 encoding, whereas storing encrypted data in the database we usually convert it to base 64 before saving. If you want to save the encrypted data in a binary column, you can set the encoding option to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Environment
Provide at least:
Expected Behavior
When I encrypt a string with
SymmetricEncryption.encrypt
then it should be decrypted bySymmetricEncryption::Reader.open
line by line too.https://encryption.rocketjob.io/ -> Large File Encryption
Actual Behavior
This code is not working, when I only pass the encrypted string into the
open
methodBut it works when I
Base64.decode64
the string before. But does the line by line have any sense in large files, when we have first to decode64 it?Beta Was this translation helpful? Give feedback.
All reactions