2

Well,

The title is pretty much my question, in python there is Hashlib, I'd like to know if there is any lib in C/C++ that have sha1, md5... implementations.

Thanks,

gdlm
  • 343
  • 2
  • 6
  • 11
  • possible duplicate of [MD5 and SHA1 C++ hashing library](http://stackoverflow.com/questions/4678447/md5-and-sha1-c-hashing-library) or [What is the best encryption library in C/C++?](http://stackoverflow.com/q/180870) – masoud Nov 05 '13 at 19:24
  • How did google not help you with this? – ScarletAmaranth Nov 05 '13 at 19:29

1 Answers1

2

Of course, given how pervasive use of these hashes is. For example, OpenSSL has them; see here and here for basic documentation.

There are also standalone implementations; eg here is what I use in my digest package for R.

Dirk Eddelbuettel
  • 360,940
  • 56
  • 644
  • 725