How to compile OpenSSL 1.1.0f under QNX6.5?

2019-12-18 Thread JoinSenior
I am developing QNX software using QNX Momentics Tool Suite. Momentics Tool Suite is installed on my Window7 system, and Neutrino RTOS 6.5 system runs on the target IPC ( Industrial Personal Computer ). Now I need to use openssl 1.1.0f in my program. I download the OpenSSL source code from

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Richard Levitte
I discovered that very same issue earlier today. Fix is in: commit 28361a0b821d36e3b19271b0a7909d5355b0990c (HEAD -> OpenSSL_1_1_1-stable, origin/OpenSSL_1_1_1-stable) Author: Richard Levitte Date: Tue Oct 23 10:15:12 2018 +0200 RAND: ensure INT32_MAX is defined This value is

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Chris Clark
Richard, Moving Glob.pm into the main directory of the latest stable snapshot openssl-1.1.1-stable-SNAP-20181022 allowed it to bypass the missing Glob.pm message, but then it failed with the same set of "error C2065: 'INT32_MAX' : undeclared identifier" messages as the older

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Chris Clark
Next I tried an older stable snapshot openssl-1.1.1-stable-SNAP-20181018 which configured without issue, but I got a different compile result: cl /Zi /Fdossl_static.pdb /Gs0 /GF /Gy /MD /W3 /wd4090 /nologo /O2 /I "." /I "crypto\include" /I "include" -D"L_ENDIAN" -D"OPENSSL_PIC"

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Chris Clark
Thanks Richard. I downloaded the latest stable snapshot in order to bypass the UINT16_MAX definition bug, but this version fails to configure: C:\openssl-1.1.1-stable-SNAP-20181022>perl Configure VC-WIN64A --prefix=c:/openssl no-makedepend Can't locate OpenSSL/Glob.pm in @INC (you may need to

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Richard Levitte
Silly me, I forgot we already fixed that bug: commit 6258e244bf702dc981c8ad63ab61133b8bbf2ba3 Author: Richard Levitte Date: Wed Sep 12 02:06:26 2018 +0200 crypto/sm2/sm2_sign.c: ensure UINT16_MAX is properly defined Fixes #7186

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Richard Levitte
That indicates we do things in the wrong order (foo.obj depends on foo.d, meaning foo.d gets "built" first), but that's a side issue. You found a bug in crypto\sm2\sm2_sign.c, thank you. Are you willing to write up a Github issue for it? In message on Tue, 23 Oct 2018 01:22:34 -0700, Chris

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Chris Clark
Thank you Richard. Adding the "no-makedepend" avoided the fatal error U1077, but now it fails due to an undeclared identifier: cl /Zi /Fdossl_static.pdb /Gs0 /GF /Gy /MD /W3 /wd4090 /nologo /O2 /I "." /I "crypto\include" /I "include" -D"L_ENDIAN" -D"OPENSSL_PIC" -D"OPENSSL_CPUID_OBJ"

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Chris Clark
achricht- > > Von: openssl-users Im Auftrag von Dr. > > Matthias St. Pierre > > Gesendet: Dienstag, 23. Oktober 2018 09:17 > > An: openssl-users@openssl.org > > Betreff: Re: [openssl-users] How to compile 1.1.1 under Windows > > > > Hi, > >

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Dr. Matthias St. Pierre
: openssl-users@openssl.org > Betreff: Re: [openssl-users] How to compile 1.1.1 under Windows > > Hi, > > a lot of structures where made opaque going from 1.0.2 to 1.1.0. > This means, you will have to make changes to your program source code > to compile it against 1.1.0 o

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Richard Levitte
I suspect you'll find some kind of error message in crypto\sm2\sm2_sign.d. I suspect that /showIncludes isn't supported in VS 2008. There is a workaround for this problem, and it's to use the 'no-makedepend' option: perl Configure VC-WIN64A --prefix=c:/openssl no-makedepend For a single

Re: [openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Dr. Matthias St. Pierre
t; Von: openssl-users Im Auftrag von Chris > Clark > Gesendet: Dienstag, 23. Oktober 2018 08:51 > An: openssl-users@openssl.org > Betreff: [openssl-users] How to compile 1.1.1 under Windows > > I am attempting to upgrade a project using OpenSSL 1.0.0h to version > 1.1.1 u

[openssl-users] How to compile 1.1.1 under Windows

2018-10-23 Thread Chris Clark
I am attempting to upgrade a project using OpenSSL 1.0.0h to version 1.1.1 under Visual Studio 2008-SP1, but when I try to compile version 1.1.1 for VC-WIN64A I get the following compile error: cl /Zi /Fdossl_static.pdb /Gs0 /GF /Gy /MD /W3 /wd4090 /nologo /O2 /I "." /I "crypto\include"

Re: [openssl-users] How to compile OpenSSL 1.0.x with versioned symbols ?

2018-07-19 Thread Matt Caswell
On 19/07/18 07:08, pratyush parimal wrote: > Hi all, > > Are people familiar with how to get symbols versioned with versions > like "OPENSSL_1.0.x" in the libcrypto.so after compiling it > yourselves? OpenSSL as sourced from the OpenSSL project does not support this in 1.0.x. > Problem is,

[openssl-users] How to compile OpenSSL 1.0.x with versioned symbols ?

2018-07-19 Thread pratyush parimal
Hi all, Are people familiar with how to get symbols versioned with versions like "OPENSSL_1.0.x" in the libcrypto.so after compiling it yourselves? I have an application which was compiled and dynamically linked against OpenSSL 1.0.2k on a CentOS 6.7 machine. I'm trying to run it on a system

Re: [openssl-users] How to compile for ARM-Cortex M4?

2017-11-13 Thread Ajay Garg
Help please... experts ?!! On Fri, Nov 10, 2017 at 12:52 PM, Ajay Garg wrote: > Hi All. > > I am using bleeding-edge openssl code, and wish to compile it for > https://www.digikey.com/product-detail/en/microchip- > technology/ATSAM4E8CA-AUR/ATSAM4E8CA-AURCT-ND/4140758 >

[openssl-users] How to compile for ARM-Cortex M4?

2017-11-09 Thread Ajay Garg
Hi All. I am using bleeding-edge openssl code, and wish to compile it for https://www.digikey.com/product-detail/en/microchip-technology/ATSAM4E8CA-AUR/ATSAM4E8CA-AURCT-ND/4140758 What is the best/recommended way to accomplish this? Will be grateful for a reply. Thanks and Regards, Ajay --

Re: [openssl-users] how to compile out selected ciphers

2017-08-31 Thread Salz, Rich via openssl-users
What version of openssl are you building? -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] [openssl-dev] how to compile out selected ciphers

2017-08-31 Thread Richard Levitte
In message

[openssl-users] how to compile out selected ciphers

2017-08-30 Thread Jayalakshmi bhat
Hi All, I am trying to build openssl. As part of that I want to remove some ciphers like md4, rc5 etc. I tried ./config no-md5, no-rc5 and ./Configure no-md5, no-rc5. In both the case MD4 and RC5 directories are still getting compiled. Please can you let me know what could be going wrong.

Re: [openssl-users] How to compile the static binary version of openssl

2017-03-07 Thread Viktor Dukhovni
> On Mar 7, 2017, at 5:28 AM, Yu Chen wrote: > > Currently I'm trying to get a static binary of openssl command via > compilng the openssl-1.1.0e. What do you mean by "static binary"? Is it enough for the "ssl" and "crypto" libraries to be statically linked into the

[openssl-users] How to compile the static binary version of openssl

2017-03-07 Thread Yu Chen
Hi, Currently I'm trying to get a static binary of openssl command via compilng the openssl-1.1.0e. I've tried to configure with no-shared, but the bin/openssl is still dynamic linked. Thus I added -static to the end of CFLAG, it just can not get compiled. Anyone know how to get a static openssl

how to compile openssl with -bindist option

2014-08-06 Thread Gayathri Manoj
Hi All, Please let me know how to compile openssl with -bindist option. Thanks, Gayathri

Re: how to compile openssl with -bindist option

2014-08-06 Thread Matt Caswell
On 6 August 2014 11:27, Gayathri Manoj gayathri.an...@gmail.com wrote: Hi All, Please let me know how to compile openssl with -bindist option. I suspect you are asking this on the wrong forum as I think this is a gentoo thing not an openssl thing. With the caveat that I know nothing about

Re: how to compile openssl with -bindist option

2014-08-06 Thread Gayathri Manoj
wrote: Hi All, Please let me know how to compile openssl with -bindist option. I suspect you are asking this on the wrong forum as I think this is a gentoo thing not an openssl thing. With the caveat that I know nothing about gentoo, a few minutes googling turned up this page which might

Re: how to compile openssl with -bindist option

2014-08-06 Thread Matt Caswell
On 6 August 2014 14:12, Gayathri Manoj gayathri.an...@gmail.com wrote: Hi Matt, Thanks Matt. My actual issue is that I am not able to generate ecdsa keys after upgrading openssl version from 0.9.8y to 0.9.8za. For making our openssl fips compliant we complied the same with -no-ec option

Re: how to compile openssl with -bindist option

2014-08-06 Thread Gayathri Manoj
Hi Matt, Is there any solution to compile openssl-0.9.8za without -no-ec option. Or do we have any patch available to fix the fips breakage issue. *Known issues in OpenSSL 0.9.8za:* - FIPS capable link failure with missing symbol BN_consttime_swap. Fixed in 0.9.8zb-dev. Workaround is to

Re: how to compile openssl with -bindist option

2014-08-06 Thread Matt Caswell
On 6 August 2014 14:35, Gayathri Manoj gayathri.an...@gmail.com wrote: Hi Matt, Is there any solution to compile openssl-0.9.8za without -no-ec option. Or do we have any patch available to fix the fips breakage issue. Known issues in OpenSSL 0.9.8za: FIPS capable link failure with missing

Re: how to compile openssl with -bindist option

2014-08-06 Thread Gayathri Manoj
Hi, Thanks for your update. We tried to compile without -no-ec . but its got failed. Thanks, Gayathri On Wed, Aug 6, 2014 at 7:16 PM, Matt Caswell m...@openssl.org wrote: On 6 August 2014 14:35, Gayathri Manoj gayathri.an...@gmail.com wrote: Hi Matt, Is there any solution to compile

Re: how to compile openssl with -bindist option

2014-08-06 Thread Gayathri Manoj
Hi Matt, One more doubt. Please let me know if I compiled my openssl 0.9.8za without -no-ec option and I am not using this alogorithm in any of my application then shall I can say my application is fips complaint? Thanks, Gayathri On Wed, Aug 6, 2014 at 7:22 PM, Gayathri Manoj

[FYI] How to compile openssl-0.9.8q with BCB 6 (borland c++ builder 6)

2011-05-25 Thread eric.britz
FYI Here is the steps: - See Install.w32 and follow steps for Borland C++ builder 5 - You will have erros at compilation time Errors are due to the following 2 lines struct _timeb tb; and _ftime(tb); Workaround for BCB 6: Change those lines to the following. #if

how to compile for mips64-octeon-linux-gnu?

2010-11-03 Thread Naama Bar Menachem
Hi I need to cross-compile openSSL when my host is i686-pc-linux-gnu and the target is mips64-octeon-linux-gnu? On the ./Configure oprions I don't see any matching platform Thank you Naaama Bar-Menachem Software Engineer, RD

Re: how to compile for mips64-octeon-linux-gnu?

2010-11-03 Thread Dr. Stephen Henson
On Wed, Nov 03, 2010, Naama Bar Menachem wrote: Hi I need to cross-compile openSSL when my host is i686-pc-linux-gnu and the target is mips64-octeon-linux-gnu? On the ./Configure oprions I don't see any matching platform You can set the environment variables MACHINE, RELEASE, SYSTEM

How to compile for 64-bit operation on Mac OS Intel?

2010-03-28 Thread James Brown
When I try to compile Postfix 2.7.0, sudo make install ends with: cc -arch x86_64 -DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl -DHAS_PCRE -I/usr/local/include -DHAS_SSL -I/usr/include/openssl -DHAS_MYSQL -I/usr/local/mysql/include/mysql -DBIND_8_COMPAT -DNO_NETINFO -DNO_KQUEUE

How to compile the ocsp.c file in linux?

2007-11-01 Thread 李勃良
Hello,everybody: I want to just compile apps/ocsp.c to an executalbe file in Ubuntu 7.04, and the gcc is version 4.1.2. I used the command gcc ocsp.c -I ./include -L ./lib -lssl -lcrypto -ldl to compile it, but failed. The error information is: e_os.h:265:25: error: windows.h: No

How to compile OpenSSL 0.9.8 with MinGW successfully

2005-10-06 Thread Matthias Buecher / Germany
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello everybody, I hope the following text will help everybody, who is not used to compiling things, to build the OpenSSL 0.9.8 DLLs by themselves with MinGW under Win32. Let's hope the next sourcecode release will fix this dependecy. Regards

How to compile...

2004-08-27 Thread Robert Kutsch Freenet
Hallo, how can i compile the openssl library so i get only the rsa sign algorithm or the key generation? Or is it possible to compile only the cryptolib? Thx for replay Robert Kutsch __ OpenSSL Project

How to compile OpenSSL using Intel PRO C/C++ 6.0 ?

2002-08-20 Thread Ingo A. Kubbilun
Hi all, if you're using Intel PRO C/C++ 6.0 instead of Microsoft Visual C/C++ 6.0 compiler to get FAR MORE OPTIMIZED CODE, then follow these instructions: refer to INSTALL.W32: = 1.) Execute perl Configure VC-WIN32. 2.) Execute ms\do_masm or ms\do_nasm or ms\do_ms or

Re: Need to know how to compile a debug version of OpenSSL...

2002-08-01 Thread Vinay
Hi, Thanks a lot. I got the idea. So long, Jacob. - Original Message - From: Frank Balluffi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 31, 2002 11:09 PM Subject: Re: Need to know how to compile a debug version

Re: Need to know how to compile a debug version of OpenSSL...

2002-07-31 Thread Frank Balluffi
by:Subject: Need to know how to compile a debug version of OpenSSL... owner-openssl-users@ openssl.org

[Crypt::SSLeay] How to compile with aCC on hpux 11.0?

2001-11-30 Thread BRIX,THOMAS (HP-Germany,ex2)
Hi all, is there a way to compile Crypt-SSLeay-0.35 using a aCC B3910B A.03.30 on hp-ux 11.0? tia Best regards Thomas Brix __ OpenSSL Project http://www.openssl.org User Support Mailing List

How to compile OpenSSL to get an Export version

2000-10-09 Thread Hieu Nguyen
I like to compile a version of OpenSSL to allow only cipher suites using 40-bits encription key. If anyone know how to do thie please let me know. __ OpenSSL Project http://www.openssl.org User

How can compile the openssl?

2000-09-05 Thread adr
Hi I have the source of openssl(version openssl-0.9.3a),I compile it in Redhat6.2,I have installed the openssl,but can not compile enc.c and req.c,which both in the "apps" directory.The openssl is in default location,which is /usr/local/ssl.

Majordomo results: How can compile the openssl?

2000-09-05 Thread Majordomo
-- Hi Command 'hi' not recognized. I have the source of openssl(version openssl-0.9.3a),I compile it in Redhat6.2,I Command 'i' not recognized. have installed the openssl,but can not compile enc.c and req.c,which both in the "apps" Command 'have' not recognized.

Re: How to compile the OpenSSL (or SSLeay) with djgpp?

1999-03-23 Thread Erwann ABALEA
Yep, I did, I remember I modified some files, but that's nearly all I remember ;-) Maybe I can send you a binary? On Tue, 23 Mar 1999, Wojciech Zabolotny wrote: I have to add a cryptographic support for my multiplatform (Debian Linux MSDOS) application. I'd like to use the SSLeay (0.9.0b)