-
Notifications
You must be signed in to change notification settings - Fork 51
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
how to use a specific algorithm #94
Comments
it's kinda organic, if people miss a function they most of the time add it themselves and i just merge it in. it's pretty easy, checkout this https://github.com/stef/pysodium/blob/master/pysodium/__init__.py - and also previous closed PRs are a good info source. |
It's already there and it's simply called The full name |
no, it isn't. i want to use the full name of the API so if in 5 years a new algorithm is considered more secure and the default changed to point to that, my program will continue working because it explicitily calls crypto_box_curve25519xsalsa20poly1305. |
What is more likely is that undocumented, low-level APIs like this one will eventually get removed. |
if they'd do that, generated keys for the current "whatever-is-currently-standard" API would suddenly stop working. imagine if you'd lose the key to your bitcoin wallet due to such a change... |
Just use Anyway, the good news is that what you are asking already exists in PySodium. |
if you agree i'll close this issue next time i come across it. |
i'd like to use crypto_box_curve25519xsalsa20poly1305 so i know what i get, but it isn't provided.
The text was updated successfully, but these errors were encountered: