Hello, On Thu, 2003-07-17 at 13:27, [EMAIL PROTECTED] wrote: > For the purposes of my project, I need some simple way to retreive the > hash internally. ie if I have the file name, I want to be able to > plug it into the cryptlib, and have the hash (or equivalent byte > values) return to my interface functions, not outputted directly.
Can't you just replace your FileSink (http://cryptopp.sourceforge.net/docs/ref5/class_file_sink.html) with a StringSink (which is just a typedef StringSinkTemplate<std::string> StringSink, http://cryptopp.sourceforge.net/docs/ref5/class_string_sink_template.html) and use the contents of the std::string in your code? Regards, -- Pat Deegan, http://www.psychogenic.com/ PGP: http://www.keyserver.net 0x03F86A50
