RE: Compiling Error for Openssl on NT

2001-10-19 Thread Ruby Cruiser
Hi Zuosheng Hu , Your problem is explained in FAQ. http://www.openssl.org/support/faq.html You have to run VCVARS32.BAT (of MS VC++) before doing nmake step. - Ruby --- "Dilkie, Lee" <[EMAIL PROTECTED]> wrote: > did you do a "vcvars32" to set the command line > environment up, like the docume

Majordomo results: Pleae help (install question)

2001-10-19 Thread Majordomo
-- Hi Command 'hi' not recognized. I am attempting to upgrade my OpenSSL to the newest version. Command 'i' not recognized. I am running a cobalt raq3, and plan to use the Redhat rpm.Will Command 'i' not recognized. this have any affect on my Apache

Re: subordinate CA

2001-10-19 Thread Juan Carlos Albores Aguilar
hi there, thanks Dr. Henson your tips have been very useful to me, you were right, there is an -signca option, the same about my crl question, i generated it again and it finally registered my revoked certificates. However my question about uninstalling openssl is still without an answer, if so

Re: Moving write buffer

2001-10-19 Thread Eric Rescorla
Andrew Finnell <[EMAIL PROTECTED]> writes: > [1 ] > In my application , I am doing something simliar to this on the client > > SSL_use_PrivateKey_file ( "blah" ); > SSL_use_certificate_file ( "blah" ); > SSL_renegotiate ( ssl ); > > Not after that is done I try send

Moving write buffer

2001-10-19 Thread Andrew Finnell
Title: Message     In my application , I am doing something simliar to this on the client    SSL_use_PrivateKey_file ( "blah" );     SSL_use_certificate_file ( "blah" );     SSL_renegotiate ( ssl );    Not after that is done I try send a large amount of data on the server And I

Pleae help (install question)

2001-10-19 Thread Jeff B
Hi I am attempting to upgrade my OpenSSL to the newest version. I am running a cobalt raq3, and plan to use the Redhat rpm.Will this have any affect on my Apache or any other system files? In other words, will I have to adjust any other programs after I make the OpenSSL? Thanks

Re: ASN1 SEQUENCE

2001-10-19 Thread Dr S N Henson
[EMAIL PROTECTED] wrote: > > Hi all, > I want to wrap data into the SEQUENCE (PKCS#1) > > DigestInfo ::= SEQUENCE { > digestAlgorithm DigestAlgorithmIdentifier, > digest Digest > } > > and then DER encode it. > > Using OpenSSL 0.9.6b (EVP and ASN1 routines) I'm able to obtain the > d

RE: Compiling Error for Openssl on NT

2001-10-19 Thread Dilkie, Lee
Title: Compiling Error for Openssl on NT did you do a "vcvars32" to set the command line environment up, like the document doesn't state?   And why would someone from Entrust be using open source crypto?   -lee dilkie (former entrust programmer) -Original Message-From: Zuosheng Hu

Re: Moderated list needed

2001-10-19 Thread John L. Grzesiak
X-Originating-host: h00a0c5e65885.ne.mediaone.net PCRD - Hartford CT USA ... Try removing the email address from http://www.removeyou.com It may help a bit The only other choice I know is to block addresses one by one... Even with a database driving it takes a lot of cycles... I

RE: Hi

2001-10-19 Thread Ryan Hurst
Manoj -     The current 9.7 branch has the OCSP code in it. It has both a client and server however its server is just a proof of concept; it can not handle multiple concurrent requests, etc.   Ryan   -Original Message- From: Manoj Kumar [mailto:[EMAIL PROTECTED]] Sen

ASN1 SEQUENCE

2001-10-19 Thread blu-_-king
Hi all, I want to wrap data into the SEQUENCE (PKCS#1) DigestInfo ::= SEQUENCE { digestAlgorithm DigestAlgorithmIdentifier, digest Digest } and then DER encode it. Using OpenSSL 0.9.6b (EVP and ASN1 routines) I'm able to obtain the digested data as OCTET STRING, but how can I build a

Compiling Error for Openssl on NT

2001-10-19 Thread Zuosheng Hu
Title: Compiling Error for Openssl on NT Dear Sir:    I am using openssl toolkit , version 0.9.6b. According to the instruction, I did the following steps:     >perl Configure VC-WIN32 (okay);     >ms\do_ms (okay);     >nmake -f ms\ntdll.mak, (error occurs. the error message is:  

Regarding OCSP

2001-10-19 Thread Manoj Kumar
I tried OCSP-OpenSSL-0.9.5aKIT with openssl-0.9.5a, it can generate the ocsprequest.But the concept of OCSP responder is vauge.This patch is unstable.Can You let me know when or in which version I cantry for OCSP client /responder.Thanks & RegardsManoj KumarTCS,11th Floor,Maker TowerCauffe P

Hi

2001-10-19 Thread Manoj Kumar
Hi all Can anbody let me know about the patch of OCSP. Is there any new patch of OCSP after one for openssl-0.9.5a If it is there let me know & in which version openssl can I use. Thanks & Regards Manoj   BEGIN:VCARD VERSION:2.1 N:Kumar;Manoj FN:Manoj Kumar ORG:TCS;E-Security TITLE:ASE(T) TE

EVP public key generation

2001-10-19 Thread Juan Segarra
Is it possible to generate a public/private key directly using EVP?? When I want an RSA key i do the next: main() { RSA *RSA_key; EVP_PKEY *EVP_key; RSA_key = RSA_generate_key( ... ); EVP_key = EVP_PKEY_new(); EVP_PKEY_assign_RSA (EVP_key, RSA