[ecjpake] Migrate to new component templates

Test: fx test openssl-ecjpake_tests
Change-Id: I0dc0da09720d76387c6d8385df5e8ee1b3e0635c
Reviewed-on: https://fuchsia-review.googlesource.com/c/third_party/openssl-ecjpake/+/498879
Reviewed-by: Shai Barack <shayba@google.com>
1 file changed
tree: ed83fef42338398999e90c4deb3571e77f27ed7e
  1. openssl/
  2. .gitignore
  3. BUILD.gn
  4. configure.ac
  5. CONTRIBUTING.md
  6. ecjpake.c
  7. ecjpake_err.c
  8. ecjpaketest.c
  9. LICENSE
  10. Makefile.am
  11. README.md
README.md

openssl-ecjpake

An implementation of the J-PAKE cryptographic protocol based on elliptic curves. J-PAKE is a key agreement protocol that allows parties to establish secure communications by means of a shared, low-entropy password/secret.

This implementation is built for use with OpenSSL, and makes use of OpenSSL‘s public EC crypto APIs. It can also be with Google’s BoringSSL.

Building

Clone the openssl-ecjpake repo:

     $ git clone https://github.com/openweave/openssl-ecjpake
     $ cd openssl-ecjpake

Build using the supplied automake makefile:

     $ autoreconf -ivf
     $ ./configure
     $ make