Re: AES256 encryption using EVP APIs on iOS

2012-10-11 Thread Abhiroop Dabral
I did try it but not on iOS . It was on linux.. On Tue, Oct 9, 2012 at 11:37 PM, Taraniteja Vishwanatha < taranit...@gmail.com> wrote: > Hey guys, > > I am trying to use AES256 cbc mode for encryption on iOS. I found some > useful resources online http://saju.net.in/code/misc/openssl_aes.c.txt. >

Re: An easy question to answer?

2012-05-31 Thread Abhiroop Dabral
Hi, I guess you have both versions of openssl present at the same time when you are trying to compile the code. The linker is not able to link to the new version. uninstall the older version & try downloading the new version again using apt-get install libssl-dev a similar problem http://stackove

Re: help

2012-05-26 Thread Abhiroop Dabral
Openssl comes with a command line interface also. Type openssl on terminal and you will see it. This talks about using the openssl commands in a batch file .. Hope this helps! On Sat, May 26, 2012 at 5:52 AM, Feras Elias wrote: > hello > > i need help with this question > > Write a command li

openssl evp_key.c documentation

2012-05-13 Thread Abhiroop Dabral
Hi all, I am new to openssl and i was looking for a secure function to take password input from the user. After going through the source i could find evp_key.c where 3 function are defined: which are 1. evp_set_pw_prompt() 2. EVP_get_pw_prompt()3. EVP_read_pw_string() but could not find any