c++ - How should I access Boost SHA1 hash? -
i want use boost::uuids::detail::sha1 create hash large binary blob.
see: boost uuid sha1
sha1 in detail namespace , such should not 'relied upon'. how can create sha1 hash blob without instantiating objects in detail?
your choices are:
- use
boost::uuids::detail::sha1, , if changes in future release, deal then. - find implementation of sha1 (say in crypto++, example), , use that.
Comments
Post a Comment