Hi Jay,
Thanks for your reply.
Our requirement is as follows
1. only using openssl for authenticaion and a key wrap algorithm. No
encryption is needed.
2. For MAC alogorithm, we need to use M_SHA1 / M_SHA256
For key wrap algo, we need to use AES 128 or AES 256 algo.
Following are the steps we
Hi Jay,
Thanks for your reply.
Our requirement is as follows
1. only using openssl for authenticaion and a key wrap algorithm. No
encryption is needed.
2. For MAC alogorithm, we need to use M_SHA1 / M_SHA256
For key wrap algo, we need to use AES 128 or AES 256 algo.
Following are the steps we
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
#
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.
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 trying