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
It would be very nice to use symmetric encryption for password-protected tickets. When the file is received, we could use a symmetric block cypher mode such as aes-xts to encrypt the file backed-up by the ticket. We could use the known password hash for validation instead of validating the content, so there's nothing "special" required to support it (the cypher is totally invisible to the user).
I was looking at PHP libraries, but I couldn't find any library that offers a convenient (seekable!) API to perform aes-xts on a file. I'm reluctant to use external tools, as this would complicate furthermore the setup and/or reduce the chance that this would be a standard feature in a DL installation, and not something that would be easily skipped.
The text was updated successfully, but these errors were encountered:
It would be very nice to use symmetric encryption for password-protected tickets. When the file is received, we could use a symmetric block cypher mode such as aes-xts to encrypt the file backed-up by the ticket. We could use the known password hash for validation instead of validating the content, so there's nothing "special" required to support it (the cypher is totally invisible to the user).
I was looking at PHP libraries, but I couldn't find any library that offers a convenient (seekable!) API to perform aes-xts on a file. I'm reluctant to use external tools, as this would complicate furthermore the setup and/or reduce the chance that this would be a standard feature in a DL installation, and not something that would be easily skipped.
The text was updated successfully, but these errors were encountered: