Re: [FWD] SSL_write returned SSL_ERROR_SSL

2009-11-03 Thread luiz
meout > 0 ) r = select(com+1,&fd_r,&fd_w,NULL,&tv); else r = select(com+1,&fd_r,&fd_w,NULL,NULL); } while ( ret == -1 && r != 0 ); if ( r == 0) return -1; return ret; } Regards Luiz > Forwarding to openssl-users for public discus

Re: ssl_write returned ssl_error_ssl: urgent help needed

2009-11-18 Thread luiz
Hi i use the follow to write to ssl int hb_inetSSLWrite( SSL* pSSL, int iSock,int iTimeout char * msg, int length, int* iRet) { int ret; int sslerr; int r; fd_set fd_r, fd_w; struct timeval tv; do { ret = SSL_write(pSSL, msg, length); sslerr = SSL_get_error(pS

Re: Does OpenSSL supports the HTTP POST request?

2010-06-02 Thread luiz
Hi I use https post with any problem you just need to format properly your https post string , and send the data Regards Luiz > > Hi, > I want to use HTTP POST request for connecting to the server..I checked > with > the available sample programs but it all supports HTTP GET. &

Re: data size issue with SSL_read( ) / SSL_write

2011-03-17 Thread luiz
Hi does your server send \r\n with hello? i read byte by byte until i found an \r\n Regards Luiz > Hello, > > In my programm, client send "HELLO" message to server. > > 1) > --- &g

Plataforms

2006-10-08 Thread Eduardo Luiz
Does anybody knows if exists any implementation of openSSL on the following plataforms:SymbianBrewWindows CEJava MEIf it exists, can you send me it or say to me where i can get?Thanks!

How I can generate certificates to use with IIS 4.0

2000-10-17 Thread Luiz Carneiro
Hi... How can I use openssl to generate certificates to use with IIS 4.0? Thanks, Luiz Carneiro __ OpenSSL Project http://www.openssl.org User

Books on OPENSSL and Certificates

2000-10-30 Thread Luiz Carneiro
Hi, I want to know if someone knows a good book, where I can find information about how to use openssl. Thanks, Luiz Carneiro __ OpenSSL Project http

[openssl-users] Doubt about the CMS_sign() function (in file openssl/crypto/cms/cms_smime.c)

2015-12-21 Thread Luiz Laranjeira
Hi folks, My name is Luiz Laranjeira. I am an associate professor of software engineering with the University of Brasilia, Brazil. I have a group that is developing a signer and validator according to RFC 5652 (CMS/PKCS#7) and we are using OpenSSL. I would like to ask your help concerning a

Installation problem

2001-09-14 Thread Luiz Filipe Menezes Vieira
Missing file wincrypt.h when compiling version 0.9.6a and 0.9.6b using VC on file .\crypto\rand\rand_win.c Any help? Luiz Filipe __ OpenSSL Project http://www.openssl.org User Support Mailing

Pop3/smtp with gmail

2009-07-30 Thread Luiz Rafael Culik Guimaraes
smtp server Regards Luiz __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List Manager majord

Re: Pop3/smtp with gmail

2009-07-31 Thread Luiz Rafael Culik Guimaraes
smtp server Also i use select() to poll read and write mode. and some times both SSL_read and SSL_write return 0 with errorcode 5 Regards Luiz __ OpenSSL Project http://www.openssl.org User

what is the best way to read write data on openssl

2009-07-31 Thread Luiz Rafael Culik Guimaraes
gcc Regards Luiz __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List Manager majord

SSL_read/SSL_write and select

2009-08-03 Thread Luiz Rafael Culik Guimaraes
tv.tv_usec = (Socket->timeout % 1000) * 1000; if( select( Socket->com + 1, &set, NULL, NULL, &tv ) < 0 ) return 0; } return FD_ISSET( Socket->com, &set ); } So , how can i change so can work correctly with