In .net I am aware that I can use X509Certificate chain to validate the a given certificate. I searched and found quite a few examples on how to do it. But if I want a little more control over it, I can't. By design it is very high level.
I was wanting something as low as this: Nakov's code.
Where I can download at will, and control the cache as I need or design.

Does anyone know any framework, or technique to use with BouncyCastle or IText?

thanks in advance

link|improve this question

feedback

2 Answers

Why can't you use the standard ServicePointManager.ServerCertificateValidationCallback?

http://msdn.microsoft.com/en-us/library/system.net.servicepointmanager.servercertificatevalidationcallback.aspx

An application can set the ServerCertificateValidationCallback property to a method to use for custom validation by the client of the server certificate.

link|improve this answer
You see, what I want to do is a tad different from that. The validation that I want to do is supposed to be used in a digital signature scenario, not a ssl opening connection. – NoProblemBabe Feb 9 at 11:18
But that is great, nonetheless, I always wanted to know that class name... ServicePointManager... Thanks a million – NoProblemBabe Feb 9 at 11:19
Wow, I completely missed that you weren't doing TLS. That changes things! – jglouie Feb 9 at 14:28
@NoProblemBabe Could you get away with deriving off of X509CertificateValidator and overriding the Validate() method? I've never tried this approach personally. See: msdn.microsoft.com/en-us/library/… – jglouie Feb 9 at 14:40
Sounds really good... gonna try it – NoProblemBabe Feb 11 at 21:13
feedback

Our SecureBlackbox offers TElX509CertificateValidator component which can be fully controlled and tuned up as you like. And if it's not enough, - TElX509CertificateValidator uses only functions and classes offered by SecureBlackbox so you can build your own validation procedures. SecureBlackbox supports OCSP requests and CRLs and much more

link|improve this answer
Sounds incredible, but I wan't to learn, Eugene. I was looking at it and it looks really concise. I will study it a little. thanks – NoProblemBabe Feb 9 at 11:34
feedback

Your Answer

 
or
required, but never shown

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