spake2-ee icon indicating copy to clipboard operation
spake2-ee copied to clipboard

A SPAKE2+ Elligator Edition implementation for libsodium 1.0.16+

Results 2 spake2-ee issues
Sort by recently updated
recently updated
newest added

I came up with a simple PAKE API: https://gist.github.com/Sc00bz/9d5c8e98143f68377e17dc82c5955f2b The C API will basically look like this: ``` #include const int PAKE_USER_CLIENT = 0; const int PAKE_USER_SERVER = 1; const...

I noticed that the server verifies first instead of the client verifying first. Also when the client verifies they can also send encrypted data, saving an RTT. Current: ``` C->S:...