-
Notifications
You must be signed in to change notification settings - Fork 6
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
Add support for symmetric cryptography with Sequoia #18
Comments
In this regard, Sequoia should be fully compatible with GnuPG, since they are both implementing OpenPGP. If there are any incompatibilities, then they would be a high-priority issue for Sequoia.
Using OpenPGP, it is possible to encrypt to multiple pubic keys and multiple passwords. And, it is possible to do both at the same time. Reencrypting is conceptually straightforward: just decrypt the session key, and reencrypt it to a password or public key. I've added an issue to Sequoia's issue tracker to make sure this is convenient: https://gitlab.com/sequoia-pgp/sequoia/issues/118
I'm not sure if you need to do anything here. But if you do, inspecting a message (without decrypting it) is straightforward.
This is an interesting alternative, but it has the disadvantage that it doesn't use the OpenPGP format, and thus is incompatible with GnuPG. |
@nwalfield You won't believe how much your input here is valued, just because I have no idea of what I am doing when implementing anything with cryptography. Sequoia is made for me, hopefully exposing a safe and hard-to-misuse interface to common operations. On the flip-side, I might be a good use-case for you in terms of usability - if I can use it, probably others can do to :D! |
One of our primary goals for Sequoia is to provide a convenient, easy-to-use API. So, we're happy to get your feedback and understand your issues. But, we're not just interested in using you to critique our API, another goal is to support our users by providing our expertise to make sure that not just something uses Sequoia/OpenPGP, but does something great with them! :) |
As of now, we depend on GPG for asymmetric cryptography. However, depending on GPGME seems to be an issue if Windows support is desired.
An alternative seems to be Sequoia, which has Windows support on their roadmap for 2019. To get started, it should already be possible to add symmetric (i.e. password based) cryptography to sheesy, serving as quick-start alternative to the key-based cryptography and thus somewhat competing with keypass and its command-line tools.
Requirements
Open Questions
Alternatives
nettle
.Related to #12 .
The text was updated successfully, but these errors were encountered: