Re: [openssl-users] Acessing a proxy with OpenSSL

2016-01-28 Thread Marcos Bontempo
Am 28.01.2016 um 12:02 schrieb Marcos Bontempo: Hello, I'm using this example to make a SSL connection: http://fm4dd.com/openssl/sslconnect.htm. Now I want to also acess a HTTPS proxy. Is there

[openssl-users] Acessing a proxy with OpenSSL

2016-01-28 Thread Marcos Bontempo
Hello, I'm using this example to make a SSL connection: http://fm4dd.com/openssl/sslconnect.htm.Now I want to also acess a HTTPS proxy. Is there a way to acess a HTTPS proxy with the OpenSSL library? Any tip will be very helpful,Thanks. ___

[openssl-users] Digest MD5 forbidden in FIPS mode

2016-01-18 Thread Marcos Bontempo
Hello, I wrote a C code which enter in FIPS mode with fips_mod_set(1). But, when I call MD5 functions after setting FIPS mode, I get this error: md5_dgst.c(75): OpenSSL internal error, assertion failed: Low level API call to digest MD5 forbidden in FIPS mode! Aborted. Does anybody know what is wr

Re: [openssl-users] FIPS_mode_set(1) error:00000000:lib(0):func(0):reason(0)

2016-01-04 Thread Marcos Bontempo
t(1) > error::lib(0):func(0):reason(0) > From: noloa...@gmail.com > To: marcosbonte...@hotmail.com > > On Sun, Jan 3, 2016 at 10:48 AM, Marcos Bontempo > wrote: > > Thanks for the answer! The function ERR_get_error() is returning 0x. > > Do you know what it

Re: [openssl-users] FIPS_mode_set(1) error:00000000:lib(0):func(0):reason(0)

2016-01-03 Thread Marcos Bontempo
r::lib(0):func(0):reason(0) > From: noloa...@gmail.com > To: marcosbonte...@hotmail.com > > On Sun, Jan 3, 2016 at 10:48 AM, Marcos Bontempo > wrote: > > Thanks for the answer! The function ERR_get_error() is returning 0x. > > Do you know what it means? &

Re: [openssl-users] FIPS_mode_set(1) error:00000000:lib(0):func(0):reason(0)

2016-01-03 Thread Marcos Bontempo
Thanks for the answer! The function ERR_get_error() is returning 0x. Do you know what it means?I used the command you suggested:arm:~/nitere/new$ openssl errstr 0xerror::lib(0):func(0):reason(0) > Date: Sun, 3 Jan 2016 10:27:15 -0500 > From: noloa...@gmail.com > To: openss

Re: [openssl-users] FIPS_mode_set(1) error:00000000:lib(0):func(0):reason(0)

2016-01-03 Thread Marcos Bontempo
I'm searching but I cannot find nothing about the error::lib(0):func(0):reason(0) when enabling FIPS mode. From: marcosbonte...@hotmail.com To: openssl-users@openssl.org Date: Sun, 27 Dec 2015 17:30:25 -0200 Subject: [openssl-users] FIPS_mode_set(1) error::lib(0):func(0):r

[openssl-users] FIPS_mode_set(1) error:00000000:lib(0):func(0):reason(0)

2015-12-27 Thread Marcos Bontempo
Hello, I'm trying to enable FIPS mode with this code:__#include #include #include int main ( int argc, char *argv[] ){#ifdef OPENSSL_FIPS int mode, result; // Get FIPS modeif(strcmp("get",argv[1]) == 0)

Re: [openssl-users] FIPS_check_incore_fingerprint: fingerprint does not match

2015-12-27 Thread Marcos Bontempo
he FIPS linker script but I couldn't find any content. Can you tell how can I run it? To: openssl-users@openssl.org From: jb-open...@wisemo.com Date: Wed, 23 Dec 2015 02:58:22 +0100 Subject: Re: [openssl-users] FIPS_check_incore_fingerprint: fingerprint does not ma

Re: [openssl-users] FIPS_check_incore_fingerprint: fingerprint does not match

2015-12-23 Thread Marcos Bontempo
print does not match On 23/12/2015 01:26, Marcos Bontempo wrote: Hello, I'm getting this error when call the function FIPS_mode_set(1): error:2D0

[openssl-users] FIPS_check_incore_fingerprint: fingerprint does not match

2015-12-22 Thread Marcos Bontempo
Hello, I'm getting this error when call the function FIPS_mode_set(1): error:2D06B06F:FIPS routines:FIPS_check_incore_fingerprint:fingerprint does not match Does anybody know how to correct it? Any tip will be very helpful,Thanks. __

Re: [openssl-users] undefined reference to `FIPS_mode'

2015-12-22 Thread Marcos Bontempo
can I correct it? > To: openssl-users@openssl.org > From: marqu...@openssl.com > Date: Mon, 21 Dec 2015 09:06:01 -0500 > Subject: Re: [openssl-users] undefined reference to `FIPS_mode' > > On 12/21/2015 08:39 AM, Marcos Bontempo wrote: > > I did the tests in a Ubuntu 1

Re: [openssl-users] undefined reference to `FIPS_mode'

2015-12-21 Thread Marcos Bontempo
_mode' > > On 12/21/2015 08:39 AM, Marcos Bontempo wrote: > > I did the tests in a Ubuntu 14.04. Is there a problem with this version? > > You're cross compiling ... to what target platform I don't know. That > target platform is what needs to be supported, and b

Re: [openssl-users] undefined reference to `FIPS_mode'

2015-12-21 Thread Marcos Bontempo
I did the tests in a Ubuntu 14.04. Is there a problem with this version? > To: openssl-users@openssl.org > From: marqu...@openssl.com > Date: Mon, 21 Dec 2015 08:20:47 -0500 > Subject: Re: [openssl-users] undefined reference to `FIPS_mode' > > On 12/21/2015 07:31 AM

Re: [openssl-users] undefined reference to `FIPS_mode'

2015-12-21 Thread Marcos Bontempo
Hello, I resolved the error after compiling FIPS with ./config fips shared. I also needed to export LD_LIBRARY_PATH=/usr/local/ssl/lib:$LD_LIBRARY_PATH. Now I have a new problem. I executed this code to set the FIPS mode and no error is prompted: result = FIPS_mode_set(1);

[openssl-users] undefined reference to `FIPS_mode'

2015-12-20 Thread Marcos Bontempo
Hello, I'm programming an application that only gets and sets FIPS mode. Here is my Makefile: ---TOOLCHAIN:=/home/marcos/work/nitere/gcc-linaro-arm-linux-gnueabihf

Re: [openssl-users] FIPS 140-2 library

2015-12-19 Thread Marcos Bontempo
org > From: marqu...@openssl.com > Date: Sat, 19 Dec 2015 08:56:22 -0500 > Subject: Re: [openssl-users] FIPS 140-2 library > > On 12/19/2015 08:28 AM, Marcos Bontempo wrote: > > I want to exclude the private key if there is an attempt to violation. > > Has FIPS this functi

Re: [openssl-users] FIPS 140-2 library

2015-12-19 Thread Marcos Bontempo
I want to exclude the private key if there is an attempt to violation. Has FIPS this functionality? > To: openssl-users@openssl.org > From: marqu...@openssl.com > Date: Sat, 19 Dec 2015 08:22:47 -0500 > Subject: Re: [openssl-users] FIPS 140-2 library > > On 12/19/2015 08:19 A

Re: [openssl-users] FIPS 140-2 library

2015-12-19 Thread Marcos Bontempo
Subject: Re: [openssl-users] FIPS 140-2 library > > On 12/19/2015 07:20 AM, Marcos Bontempo wrote: > > Hello, > > > > I'm using the OpenSSL FIPS object module and I have to program a C code > > that sets FIPS 140-2 level 3. Is there a function in the C library tha

[openssl-users] FIPS 140-2 library

2015-12-19 Thread Marcos Bontempo
Hello, I'm using the OpenSSL FIPS object module and I have to program a C code that sets FIPS 140-2 level 3. Is there a function in the C library that sets it? How can I set the FIPS protected directory, so I can store my private key? Any tip will be very helpful,Thanks.