Replies: 1 comment 3 replies
-
|
Generally, data should be compressed first and then encrypted when written. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
From the perspective of TDE function implementation, the sequence of operations when reading data is: read data -> decompress data -> decrypt data; when writing data, the sequence is: encrypt data -> compress data -> write data to disk. Placing the encryption operation before the compression operation almost renders the compression ineffective. Why is this processing method adopted?
Beta Was this translation helpful? Give feedback.
All reactions