RE: memcpy in RAND_bytes

2010-10-05 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of krishnamurthy santhanam > Sent: Tuesday, 05 October, 2010 14:26 > memcpy is not working for the RAND_bytes. could anyone help me to resolve the issue. > unsigned charkeyData[BF_DEFAULT_KEY_SIZE]; > int

VMS client ASN1 decoding error, was RE: Hello!

2010-10-05 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Jeremy Hunt > Sent: Monday, 04 October, 2010 19:08 > You are reading files, see inline for discussion. > On 5/10/2010 7:36 AM, irivas wrote: > SSL_CTX_load_verify_locations(ctx,NULL,"foldername);//

Not able to load CAPI Engine

2010-10-05 Thread Harshvir Sidhu
Hi All, I am trying to load capi engine, Here the the code snippet that i am trying to use. void InitEngine() { ENGINE *e = NULL; int ret = 0; const char *engine_id = "capi"; ENGINE_load_builtin_engines(); ENGINE_register_all_complete(); e = ENGINE_by_id(engine_id); if(!e) re

Re: memcpy in RAND_bytes

2010-10-05 Thread Michael S. Zick
On Tue October 5 2010, krishnamurthy santhanam wrote: > Hi, > > memcpy is not working for the RAND_bytes. could anyone help me to resolve > the issue. > > blf.c > > #include > #include"scatype.h" > #include > #define BF_DEFAULT_KEY_SIZE 128 > typedef struct { > unsigned long length; >

memcpy in RAND_bytes

2010-10-05 Thread krishnamurthy santhanam
Hi, memcpy is not working for the RAND_bytes. could anyone help me to resolve the issue. blf.c #include #include"scatype.h" #include #define BF_DEFAULT_KEY_SIZE 128 typedef struct { unsigned long length; unsigned char dsc_type; unsigned char dsc_class; char

IRC channel to live conversations?

2010-10-05 Thread Leandro Santiago
Hello to all. I'm new in the list, so I could see there isn't any irc channel where users can talk to. Are there any oficial or even "extra-oficial" irc channel to openssl users? regards. __ OpenSSL Project

Re: Use of IMPLEMENT_ASN1_FUNCTIONS()

2010-10-05 Thread Dr. Stephen Henson
On Tue, Oct 05, 2010, lists wrote: > > For what I understood recently (I had to work a bit with it), the macro > IMPLEMENT_ASN1_FUNCTIONS will expand (macro usage is quite heavy in > OpenSSL) to provide a number of functions for the struct KDC_PRINCNAME, > such as KDC_PRINCNAME_i2d, KDC_PRINCNA

Re: Require help to understand a .crt file

2010-10-05 Thread Jakob Bohm
On 05-10-2010 07:01, colombus wrote: Hi I am new Cryptography and Open SSl I have file online.crt The spec says it contains an online certificate which is having a public key , a signature filed etc. I want extract these details from the file I need to know what type of file is online.crt Is th

Re: 64bit BIOs and support in OpenSSL

2010-10-05 Thread Jakob Bohm
On 04-10-2010 21:10, Victor Duchovni wrote: On Mon, Oct 04, 2010 at 10:37:55AM -0400, Jeff Saremi wrote: Does BIO support 64 bit IO (large files)? If so would the rest of OpenSSL (such as the ssl itself) support those BIOs? I configured the build with 64bit support and didn't see any noticeab

Re: Use of IMPLEMENT_ASN1_FUNCTIONS()

2010-10-05 Thread lists
For what I understood recently (I had to work a bit with it), the macro IMPLEMENT_ASN1_FUNCTIONS will expand (macro usage is quite heavy in OpenSSL) to provide a number of functions for the struct KDC_PRINCNAME, such as KDC_PRINCNAME_i2d, KDC_PRINCNAME_d2i, etc. The magic works so that you d

Re: [openssl-users] OCSP Success even cert alredy expired

2010-10-05 Thread Erwann ABALEA
Hodie IV Non. Oct. MMX, shizumi scripsit: > i using openssl test tool by using this command > > openssl.exe ocsp -issuer "issuer.pem" -CAfile "CACert.pem" -cert > "Certificate.pem" -url http://192.168.0.235:8080/myCA/publicweb/status/ocsp > > my CACert and issuer cert already expired. If eithe

Require help to understand a .crt file

2010-10-05 Thread colombus
Hi I am new Cryptography and Open SSl I have file online.crt The spec says it contains an online certificate which is having a public key , a signature filed etc. I want extract these details from the file I need to know what type of file is online.crt Is there any open SSL command to find or ve

Re: Hello!

2010-10-05 Thread Jeremy Hunt
You are reading files, see inline for discussion. On 5/10/2010 7:36 AM, irivas wrote: I don't even know where those errors come from. As I said before, the same code under Solaris runs alright. I'm only connecting to a regular webserver with ssl, nothing more, nothing less. I'm not consciousl