Re: What stands EVP for

2008-02-04 Thread Jorge Fernandez
f this abbreviation in the > documentation or on the web. Already answered: http://www.mail-archive.com/openssl-users@openssl.org/msg37558.html Regards, -- Jorge Fernandez

Re: ca server - unable to load CA private key

2007-11-01 Thread Jorge Fernandez
/ public key pair and > certificate. > > In step 2 it asks: "Enter pass phrase for C:\CA\private\CAkey.pem:". Is it > looking for a value from a previous step? > Yes. You have to give the passphrase you used to encrypt the private key of the CA (CAkey.pem), i.e. the one you provided when you did 'ca genca'. Regards, -- Jorge Fernandez

Re: bad decrypt in EVP_CipherFinal_ex

2007-11-01 Thread Jorge Fernandez
r, since the encrypting process overwrites the buffer of the iv that you pass. Bye, -- Jorge Fernandez

Cross-compile error

2007-10-18 Thread Jorge Fernandez
on.o] Error 1 make[1]: se sale del directorio `/home/jor/devel/openssl-0.9.8ewin/crypto' make: *** [build_crypto] Error 1 What steps am i missing or what am i doing wrong? Thank you, -- Jorge Fernandez

Re: PKCS#7 without certificates??

2007-10-17 Thread Jorge Fernandez
/Public_key_certificate So, if you just want to encrypt some data, i guess you need symmetric criptography. Then, you could posibly need asymmetric cryptography to distribute the key used, and for that you'll need certificates if you want to do it securely. Saludos, -- Jorge Fernandez

Re: Problem with EVP_CipherFinal_ex

2007-07-20 Thread Jorge Fernandez
But how can i know how many bytes long was the original buffer? (since each one will have different lengths, but when decrypting, all will be padded up to multiple of block size) Jim Thanks -- Jorge Fernandez

Problem with EVP_CipherFinal_ex

2007-07-20 Thread Jorge Fernandez
or on EVP_CipherFinal_ex" ); ERR_print_errors_fp( stderr ); EVP_CIPHER_CTX_cleanup( &ctx ); free( result ); return -1; } count += tmp_count; EVP_CIPHER_CTX_cleanup( &ctx ); return 0; } -- Jorge Fernandez