Re: What stands EVP for

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

Re: bad decrypt in EVP_CipherFinal_ex

2007-11-01 Thread Jorge Fernandez
in the EVP_CipherFinal_ex function. I don't know what else may be going wrong. Any help is appreciated. Make sure you use the same iv that you used when encrypting. You should make a copy of the iv vector, since the encrypting process overwrites the buffer of the iv that you pass. Bye, -- Jorge

Re: ca server - unable to load CA private key

2007-11-01 Thread Jorge Fernandez
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

Cross-compile error

2007-10-18 Thread Jorge Fernandez
]: 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
. 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

Problem with EVP_CipherFinal_ex

2007-07-20 Thread Jorge Fernandez
); return -1; } count += tmp_count; EVP_CIPHER_CTX_cleanup( ctx ); return 0; } -- Jorge Fernandez

Re: Problem with EVP_CipherFinal_ex

2007-07-20 Thread Jorge Fernandez
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