-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding SIV mode for AES #5877
Comments
Yes we would like to add this. Unfortunately OpenSSL has only added SIV mode in 3.0, which is not yet out. We could implement this ourselves, but we prefer to keep implementations like that within OpenSSL where possible. So you can expect to see support shortly after 3.0 is released! |
Hello: My suggestion would be to implement the GCM-SIV mode which is faster because its based on GCM and it addresses the same issue of accidental nonce-reuse that SIV does... |
OpenSSL unfortunately hasn't implemented GCM-SIV so we can't add support for it until they do. |
openssl/openssl#16721 is the OpenSSL upstream issue |
implemented in #7029 |
Hi, I haven't found SIV mode in cryptography. Will you plan to add it ?
The main reason is that I am looking for a deterministic encryption(DAE) in order to store data securely and predictably in order to be able to retrieve information using some sort of a secret.
The text was updated successfully, but these errors were encountered: