[Wconversion] Suppress warnings

Bug: 58162
Change-Id: I8245e5e2265de147699a20595f8437d153bd077a
Reviewed-on: https://fuchsia-review.googlesource.com/c/third_party/openssl-ecjpake/+/426270
Reviewed-by: Petr Hosek <phosek@google.com>
1 file changed
tree: 32ee3b0a15c0f19b3280f136aadd1ba3e4068a9f
  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