diff options
author | Raimo Niskanen <[email protected]> | 2019-03-14 17:46:51 +0100 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2019-03-28 11:21:25 +0100 |
commit | 2bca22721f6d4a9208b342d366220e6cadbea736 (patch) | |
tree | 72e799e07c0fb194e3b418b085fad011a61adcab /lib/ssl/test/Makefile | |
parent | f75cf3bd6c433f71b6fd6d58dee95b0c0fb8a238 (diff) | |
download | otp-2bca22721f6d4a9208b342d366220e6cadbea736.tar.gz otp-2bca22721f6d4a9208b342d366220e6cadbea736.tar.bz2 otp-2bca22721f6d4a9208b342d366220e6cadbea736.zip |
Implement inet_crypto_dist benchmark example
This is a simplistic distribution protocol module for
encrypted distribution using a shared secret and only
the crypto module, and AEAD ciphers.
It is intended to be a benchmark reference for how fast
encrypted distribution may get.
How secure it would be and also how useful, for actual production use,
remains to be investigated.
Diffstat (limited to 'lib/ssl/test/Makefile')
-rw-r--r-- | lib/ssl/test/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ssl/test/Makefile b/lib/ssl/test/Makefile index fc483b0a94..f7fae16088 100644 --- a/lib/ssl/test/Makefile +++ b/lib/ssl/test/Makefile @@ -64,8 +64,9 @@ MODULES = \ ssl_sni_SUITE \ ssl_eqc_SUITE \ ssl_rfc_5869_SUITE \ - make_certs\ - x509_test + make_certs \ + x509_test \ + inet_crypto_dist ERL_FILES = $(MODULES:%=%.erl) |