Sha256: eaca6f52aecd4520d1b89a49b4e3d1fe61d8788469aff72029eecf6a3826fe78
Contents?: true
Size: 1.15 KB
Versions: 13
Compression:
Stored size: 1.15 KB
Contents
// Copyright (C) 2003 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_MD5_KERNEl_1_ #define DLIB_MD5_KERNEl_1_ #include "md5_kernel_abstract.h" #include <string> #include <iosfwd> #include "../algs.h" namespace dlib { // ---------------------------------------------------------------------------------------- const std::string md5 ( const std::string& input ); // ---------------------------------------------------------------------------------------- void md5 ( const unsigned char* input, unsigned long len, unsigned char* output ); // ---------------------------------------------------------------------------------------- const std::string md5 ( std::istream& input ); // ---------------------------------------------------------------------------------------- void md5 ( std::istream& input, unsigned char* output ); // ---------------------------------------------------------------------------------------- } #ifdef NO_MAKEFILE #include "md5_kernel_1.cpp" #endif #endif // DLIB_MD5_KERNEl_1_
Version data entries
13 entries across 13 versions & 1 rubygems