The specification I am working with requires that a key-pair be generated and a certificate be automatically enrolled via SCEP to a specified server and used as both a TLS server and client certificate with OCSP validation of the counterparty. Are there any tools available for .Net to do this sort of thing?

Pure-managed code and Compact Framework support would be a Good Thing, as I am attempting to produce a unified MSIL binary that runs unmodified on CF/ARMv4i, .Net/x86 and .Net/x64, though something that only works for .Net/x86 is useful in the short term.

link|improve this question

56% accept rate
feedback

1 Answer

As far as I know, SecureBlackbox by EldoS implements such functionality, but it is commercial product. Also there are some free components (BouncyCastle, for instance). However, no one of them implements SCEP, so you'll need to do it.

link|improve this answer
Fair enough. I actually ended up using BouncyCastle for both OCSP and the underpinnings of my own SCEP implementation. I haven't gotten around to TLS yet, although the Mentalis library looks like a promising starting point -- IIRC Padarn uses a port of Mentalis to CF. – Jeffrey Hantin Dec 29 '10 at 5:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.