[openssl-users] Checking certificate validity using engine

2016-08-17 Thread Matea Pejčinović
Hello, First, i would like to apologize if his is not the right mailing list for my question. I am working on an engine implementation that should provide a functionality for checking if certificate is valid. As far as I could understand, an engine can have its own implementation of RSA methods,

[openssl-users] OpenSSL - FIPS 140 Compliant

2016-08-17 Thread Vikram Kamaraj - ERS, HCL Tech
Hello OpenSSL, Which version of OpenSSL is FIPS 140 compliant? Thanks, Vikram K ::DISCLAIMER:: The contents of this e-mail and any attachment(s)

Re: [openssl-users] Using Openssl for eCOS platform

2016-08-17 Thread Jay Foster
I have used the following snippet (along with some others) in the e_os.h header file: # if defined(__ECOS) # define __INITIAL_POINTER_SIZE 0 # define GETPID_IS_MEANINGLESS # define NO_CHMOD # define NO_SYSLOG # define HAVE_LONG_LONG 1 # define HAVE_LONG_DOUBLE 1 #

Re: [openssl-users] OpenSSL - FIPS 140 Compliant

2016-08-17 Thread Porter, Andrew
Multiple versions of OpenSSL can, with an additional source package (the OpenSSL FIPS module) be built by you to be 140-2 compliant. See http://openssl.com/fips/ for more info. From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of Vikram Kamaraj - ERS, HCL Tech Sent:

Re: [openssl-users] OpenSSL - FIPS 140 Compliant

2016-08-17 Thread Steve Marquess
On 08/17/2016 09:10 AM, Vikram Kamaraj - ERS, HCL Tech wrote: > Hello OpenSSL, > > > > Which version of OpenSSL is FIPS 140 compliant? None. A more useful question to ask is "for which versions of OpenSSL are compatible FIPS modules available?". The answer to that is 1.0.1/1.0.2 with the

Re: [openssl-users] Using Openssl for eCOS platform

2016-08-17 Thread Devadas kk
Hi, Best way to do is to modify e_os.h header file. This file has to do with OS specific changes. Something like #ifdef ECOS #define getpid ecos_task_id_fn #endif ecos_task_id_fn is a placed holder, find out actual function name to get process ID. GetThreadID is the function in NETWARE.

[openssl-users] Using Openssl for eCOS platform

2016-08-17 Thread ssk1506
Hi,I am using openssl on a n eCOS platform. I need only the secure authentication (no encryption needed).I integrated the openssl source code with my application. When I trying to build, I am getting some linking errors.:undefined reference to 'getpid':undefined reference to 'RANDpoll'I am