I'm making a little utility to help me remember passwords by repetition. I'd like to enter password to be remembered only once every day and not before each session. Of course, I wouldn't store a password itself, but would gladly store its hash.
So, what are the easiest ways to get a hash from std::string
using the C++ Standard Library?