etls
etls copied to clipboard
An alternative NIF-based implementation of Erlang ssl module.
The README isn't very clear on all the dependencies. It mentions needing cmake, but not Ninja and Golang. The only way I could get etls to compile on macOS was...
I have installed all the dependencies and they are all accessible from the cmd. I tried with different shells (cmd/Git-bash/Git-sh), cygwin, minGW, Visual Studio Tools, nothing seems to work. Is...
Hello I was wonder why instead using `enif_get_string` and `enif_get_list_length` why you are not doing something like : ``` c++ // std::string inline int get(ErlNifEnv *env, ERL_NIF_TERM term, std::string &var)...
Hello, Because etls doesn't support the cipher property where you can limit a client to a specific cipher the load test you did might not be accurate. You can't know...
Hello, Looking through the code I see when you play with atoms (at least for bool `true` and `false`) you are creating all the time them or extract the string...
Hi Konrad, your benchmark for etls is very interesting! Could you add Openssl 1.1.0 to that bench ? [As you can see](https://github.com/openssl/openssl/blob/master/crypto/err/err.c), seems that 1.1.0 will not have `CRYPTO_*_{un}lock` in...
Hi there. Is there a way to work with SNI [in a similar way](http://erlang.org/doc/man/ssl.html) that I can with the Erlang standard SSL module?. I particularly like the way you can...