The not-yet-commons SLL package for Java provides an OpenSSL object with a method for password based encryption:
encrypt("des", password, data);
This method is said to be compatible with the OpenSSL C library. My question is, what is the OpenSSL C++ method equivalent to the above Java?
Thanks