Re: FIPS 140-2 questions

2014-03-26 Thread Steve Marquess
On 03/26/2014 02:45 PM, Jason Schultz wrote: > I’m trying to decipher FIPS 140-2 Certification in regards to OpenSSL > FIPS module 2.0 and have some questions: > > > 1. Can one claim FIPS validated if running on an Operating > Environment not listed on Cert #1747? (I don’t think not having

FIPS 140-2 questions

2014-03-26 Thread Jason Schultz
I’m trying to decipher FIPS 140-2 Certification in regards to OpenSSL FIPS module 2.0 and have some questions: 1. Can one claim FIPS validated if running on an Operating Environment not listed on Cert #1747? (I don’t think not having an OE direct match is necessarily required, as long as I

Re: 2 questions

2003-04-03 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Thu, 3 Apr 2003 15:22:55 -0600, "Matthew Fleming" <[EMAIL PROTECTED]> said: mgf> 1. I have read Rescorla's book and am now reading "Network mgf>Security with OpenSSL" by Viega et al. The latter stresses the mgf>importance of registering callbacks for mult

Re: 2 questions

2003-04-03 Thread Rich Salz
My question is, do I need to register these callbacks even if my own code will always call the openssl functions from a single thread of execution? no. My question is, what "cleanup stuff" do I need to call to free up resources claimed by SSL_library_init()? Look at the last dozen or so lines of m

2 questions

2003-04-03 Thread Matthew Fleming
OpenSSL masters, I have two questions. 1. I have read Rescorla's book and am now reading "Network Security with OpenSSL" by Viega et al. The latter stresses the importance of registering callbacks for multithreading support. It seems to imply that all openssl library users should do this. But Res