Hello,<br> i'm considering porting some code of mine to erlang. It's a network server that uses SSL.<br>It makes use of the callback that you can specify on SSL_set_verify (and similar) to check if a peer is allowed to connect, based on data in its certificate.<br>
<br>(see: <a href="http://www.openssl.org/docs/ssl/SSL_CTX_set_verify.html">http://www.openssl.org/docs/ssl/SSL_CTX_set_verify.html</a>)<br><br>I've checked the documentation of the SSL application in Erlang (<a href="http://www.erlang.org/doc/apps/ssl/index.html">http://www.erlang.org/doc/apps/ssl/index.html</a>), but i couldn't find a way to supply such a callback. Is it possible?<br>
This is a fundamental feature of my server so it would be a blocking problem.<br><br>Thanks, Nicola<br>