Hi,
i'm running a reverse proxy which also acts as a [private|local] CA:

-------------------------------------------------------------------
var
   spdy = require('spdy'),
   ...

var options = {
   key  :  ...
   cert :  ...
   ca   :  ...
   crl  :  ...
   ...
};

var server = spdy.createServer(options, function(req, res) {
   ...
   res.writeHead(200);
   res.end('Hello World from the Proxy Server!');
});

server.listen(443);
-------------------------------------------------------------------

i've issued dozens of client-side X.509 certs and also revoked some of 
them.  For users or applications that try to use revoked certs (certs 
listed in the CRL), i would like to log such attempts.   It is not clear to 
me if there is an easy way to tap into TLS handshake to log the revoked 
certs tendered.  Node.js outputs something like "NSS error ..." from the 
TLS handshake.

Thanks for reading.

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to