Where can I get the SSL_set_cert_store patch to OpenSSL ?

2009-09-22 Thread Strickland, Lawrence P
Where can I get the SSL_set_cert_store patch to OpenSSL ? Larry Strickland Lead Systems Administrator lawrence-strickl...@uiowa.edu University of Iowa Hospitals and Clinics

Re: Problems using openssl through an ffi.

2006-07-28 Thread Lawrence Oluyede
On 7/27/06, Lawrence Oluyede <[EMAIL PROTECTED]> wrote: I'm trying to use openssl library through a foreign function interface (ctypes in Python) but it seems that: BIO_set_nbio and SSL_CTX_set_options/SSL_set_options are not exported in the dynamic library. Is that "a bug"

Problems using openssl through an ffi.

2006-07-27 Thread Lawrence Oluyede
and 0.9.8b and neither of them export those API. -- Lawrence http://www.oluyede.org/blog __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org

64 bit build problems

2006-06-19 Thread Lawrence Rose
P27 $ ./Configure irix64-mips4-gcc --openssldir=$OPENSSL_DIR $ make $ make test . 2220 tests passed test a^b%c implementations     ../util/shlib_wrap.sh ./exptest *** Termination code 10 (bu21) *** Error code 1 (bu21) -- larry Lawrence L. Rose AT&T Labs - Research Florham Park, NJ

irix64 bus error on exptest

2006-06-16 Thread Lawrence Rose
test a^b%c implementations ../util/shlib_wrap.sh ./exptest *** Termination code 10 (bu21) *** Error code 1 (bu21) -- larry Lawrence L. Rose AT&T Labs - Research Florham Park, NJ

Re: Certificate error FIXED

2006-05-29 Thread Lawrence Rose
Thanks Ted, Suresh, and Marek for your help!  I'm back on the merry-go-round again. -- larry Lawrence L. Rose 190 Park Avenue Daytona Development Florham Park, NJ 07932 AT&T Labs -

Re: Certificate error

2006-05-29 Thread Lawrence Rose
C66243A77D8327F58     Session-ID-ctx:     Master-Key: 015592B02BAFBC6AD70BBBA597B25D5BEA50A78F7A7DCA23A2555B4E46748382C1E11F1FCD28216510AA3923807AB5CD     Key-Arg   : None     Start Time: 1148910284     Timeout   : 300 (sec)     Verify return code: 21 (unable to verify the first certificate) --- -- lar

Certificate error

2006-05-28 Thread Lawrence Rose
e cnf, recutting certs - any help most appreciated!   err 19:self signed certificate in certificate chain ** client2.c:69 Error connecting SSL object 1:error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed:s3_clnt.c:894: -- larry Lawrence L.

HP-UX build diagnostic

2006-05-16 Thread Lawrence Rose
ymbol "AES_set_encrypt_key" in file speed.o ld: (Warning) Unsatisfied symbol "AES_set_decrypt_key" in file ../libcrypto.so.0.9.8 1 warnings. 2 errors Any help most appreciated!  Thanks. Lawrence L. Rose Daytona Development AT&T Labs - Research Florham Park, NJ 973.360.8606   work 908.463.3155   cell

Re: OpenSSL method to determine connected client 'hostname'

2006-05-04 Thread Lawrence Rose
Many thanks, Marek! -- larry Lawrence L. Rose 190 Park Avenue Daytona Development Florham Park, NJ 07932 AT&T Labs - Research Tel: 793.360.8606 [E

OpenSSL method to determine connected client 'hostname'

2006-05-04 Thread Lawrence Rose
tiple clients from connecting from multiple ip's.) Any help most appreciated! -- larry Lawrence L. Rose Daytona Development AT&T Labs - Research Florham Park, NJ 973.360.8606   work 908.463.3155   cell

Re: Using Unix Domain Sockets?

2005-03-30 Thread Lawrence Bowie
i do not see why not since you have to listen for a socket connection at some point with common code like the following .. sock = socket(PF_LOCAL,SOCK_STREAM,0); // or you can . sock = socket(PF_UNIX, SOCK_STREAM,0); memset(&sin,0,sizeof(sin)); sin.sin_addr.s_addr=INADDR_ANY; sin.sin_fa

Re: SSL_read()

2005-03-28 Thread Lawrence Bowie
Normally, you have something like ... while(1) { select() call if (SOCKET is in read mode) { do { SSL_read() call } } if (SOCKET is in write mode) { do { SSL_write() call } } } once you end first loop make sure you close t

Re: SSL_read()

2005-03-28 Thread Lawrence Bowie
Straight from the man pages .. SSL_read() works based on the SSL/TLS records. The data are received in records (with a maximum record size of 16kB for SSLv3/TLSv1). Only when a record has been completely received, it can be processed (decryption and check of integrity). Therefore dat

Re: Rijndael

2005-02-23 Thread Lawrence Bowie
Where do you hold your IVs for the C program? Are the Java and C programs seperate or are you using JNI? Also, I am not sure if "IAIK" is an actually optional Provider if you are using JCE, possibly an option using Bouncy Castle You also might try a different padding as well .. The big thin

Re: Openssl in java

2004-12-15 Thread Lawrence Bowie
Try the native implementation bundled with Sun else you will have to use some JNI methods ... http://java.sun.com/products/jsse/ LDB [EMAIL PROTECTED] wrote: Hi, I am developing server application in java and client in vc++. How to use openssl from java. Thanks in abvance S.Suresh __

Re: Openssl 0.9.7f test is looking for the wrong libssl.so

2004-11-07 Thread Lawrence Bowie
I have the same problem ... ./Configure --prefix=/opt shared threads zlib-dynamic --openssldir=/opt/ssl linux-pentium [EMAIL PROTECTED]:/work/Projects/CVS/work-openssl> make tests /usr/bin/perl: error while loading shared libraries: /libssl.so: cannot open shared object file: No such file or dir

Re: A little help please!!!

2004-09-09 Thread Lawrence Bowie
try -L/path/to/crypto/lib in front of -lcrypto LDB Marcos Paraiso wrote: I used the command --> gcc -o test test.c -lcrypto <-- and the following message was prompted: C:\MinGW\bin\..\lib\gcc-lib\mingw32\3.2.3\..\..\..\..\mingw32\bin\ld.exe: cannot find -lcrypto This is the structure of MinGW o

Re: DES-EDE3-CBC

2004-09-07 Thread Lawrence Bowie
Just type: man enc des-ede3-cbc Three key triple DES EDE in CBC mode des-ede3 Alias for des-ede3-cbc des3 Alias for des-ede3-cbc des-ede3-cfb Three key triple DES EDE CFB mode des-ede3-ofb Three key triple DES EDE in OFB mode [EMAIL PROTECTED] wrote: Doe

Re: EOFException when connecting to ldap server with jndi

2004-06-03 Thread Lawrence Bowie
You need to post to http://forum.java.sun.com/index.jsp at the Java Secure Socket Extensions section. Also, the EOFException means your connection closed unexpectedly .. I would lose tls.close(); ctx.close(); LDB mark brophy wrote: Hi all: This is my first post, so please redirect me if I'm in

Re: OpenSSL with Java?

2004-04-28 Thread Lawrence Bowie
Yes, the JDK from http://java.sun.com supports SSL. The package is called JSSE. It integrates really well. LDB Elie Lalo wrote: Hi, I know that OpenSSL supports both windows and Unix, and it is used from C and C++ programs. My question is the following: Can we use OpenSSL from Java programs as wel

RE: anybody is working with openssl and visual basic?

2002-04-03 Thread lawrence
I need a sample to work with Visual Basic too. If you have a sample, can I have a copy? Rgrds, Lawrence -Original Message- From: Rabellino Sergio [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 5:03 PM To: [EMAIL PROTECTED] Subject: Re: anybody is working with openssl and

Using VB to call SSL DLL

2001-12-04 Thread lawrence
Anyone try to use Visual Basic with compiled SSL DLL? Any sample source code available? Need to refer urgently. Thanks and Regards, LAWRENCE LOW -Original Message- From: Jared Clinton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 17, 2001 3:15 PM To: '[EMAIL PROTECTED]

Windows Demo for SSL

2001-11-19 Thread lawrence
Hi, Anyone have windows based SSL Demo program and source code written in C, VB or VC++? I really urgently need it to start my project. I'm really too new to this. Thanks for your help! Lawrence __ OpenSSL Pr

RE: Compiled Win32 version

2001-10-17 Thread lawrence
I like to have a copy also. LAWRENCE LOW -Original Message- From: LaDon L Harrison [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 18, 2001 7:06 AM To: [EMAIL PROTECTED] Subject: Compiled Win32 version Hi, I'm trying to use openssl-0.9.6b in conjunction with Win2K/Apach

Bug in (possibly) BN or (probably) DH routines

2000-10-13 Thread Lawrence MacIntyre
c key will be 55 bytes instead of 56, as it should be. This breaks my client:-( Once, the key was actually 54 bytes. Am I doing something dopey or is this a bug? -- Law

Import CRL to Netscape Communicator

2000-04-27 Thread lawrence . wong
source code: TESTCA's CRL   However, this didn't work. I don't know whether this is the right way to generate and import crl or not. Can anyone help me? Regards, Lawrence Wong __