Hi i have installed openssl on my linux machine and going through the header files and documentation (which is highly insufficint :( ).
i am trying to build a project(in 'c') which uses symmetric crypto algos (i am focusing on aes256cbc). The problem is i am confused as in how to use the library functions in my code.
For my implementation of aes256cbc i can directly use the functions defined in the 'aes.h' header file(which appeared to me at the first place).
But on googling i came accross some tutorial for this which are using 'evp.h' functions to do this http://saju.net.in/code/misc/openssl_aes.c.txt
Is there a specific reason for this or directly accessing the aes.h functions is better.
And also if someone can point me to a good documentation/tutorial of any kind on using the crypto library of openssl will be much appreciated.
many thanks
P.S forgive me if i am being naive