Re: JAVA/JNI Wrapper for OpenSSL.

2001-03-29 Thread Hausermann Laurent
Yeah it's really well documented and full fonctionnal but not opensourced ! Thanks -Laurent Mads Toftum wrote: > On Wed, Mar 28, 2001 at 01:08:34PM -0800, Sabyasachi Gupta wrote: > > I checked out JSSE and JKS but none provides the functionality to > > sign certificates as a CA programmatically (

Re: JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread qun-ying
the Java thread dump gives a lot of information unralted(I don't know how to interprete it either). try to insert a lot of debug print in your C code and find out exactly where it fails and check every return code from the OpenSSL library calll, from there it is much easier to find the problem.. _

RE: JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread Sabyasachi Gupta
ok finally no undefined symbol error..but jvm is crashing. I think using a command shell to execute openssl might be a better alternative! SIGSEGV 11* segmentation violation si_signo [11]: SIGSEGV 11* segmentation violation si_errno [0]: Success si_code [0]: SI_USER [pid: 0, uid

Re: JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread Kenneth R. Robinette
Date sent: Thu, 29 Mar 2001 10:46:41 +0800 From: qun-ying <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: JAVA/JNI Wrapper for OpenSSL. Send reply to: [EMAIL PROTECTED] Yes, this normally is the result of inc

Re: JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread qun-ying
app_RAND_load_file() is not in the library. it is only a function used in the openssl command tool. you can get the function definition in apps/app_rand.c __ OpenSSL Project http://www.openssl.org U

RE: JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread Sabyasachi Gupta
Wrapper for OpenSSL. what platform/compiler are you running? take note of the order you supply the library. move the -lcrypto to the last of your link command may solve your problem. __ I wrote a JNI stub myx509.c and compiled it

Re: JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread qun-ying
what platform/compiler are you running? take note of the order you supply the library. move the -lcrypto to the last of your link command may solve your problem. __ OpenSSL Project http://www.opens

RE: JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread Sabyasachi Gupta
I wrote a JNI stub myx509.c and compiled it into a shared library. But while running the java file I get UnsatisfiedLinkError: Undefined symbol: app_RAND_load_file The problem is I dont know which are the files to be put in the shared library or if there is any single archive file..I tried linkin

Re: JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread Paulo Matos
On Wed, 28 Mar 2001, Hausermann Laurent wrote: > Is there someone who knows a good up-to-date implementation of a JNI > glue so you could access OpenSSL library through JAVA Classes (JCE or > JSSE conformance should be great) ? > > I found through the www.openssl.org but it seems to be a bit old

JAVA/JNI Wrapper for OpenSSL.

2001-03-28 Thread Hausermann Laurent
Hi, Is there someone who knows a good up-to-date implementation of a JNI glue so you could access OpenSSL library through JAVA Classes (JCE or JSSE conformance should be great) ? I found through the www.openssl.org but it seems to be a bit old. Is the project maintenair interrested in adding t