Visualization Library 2.1.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
MD5CheckSum.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #ifndef MD5CheckSum_INCLUDE_ONCE
33 #define MD5CheckSum_INCLUDE_ONCE
34 
35 #include <vlCore/link_config.hpp>
36 #include <string>
37 #include <string.h>
38 
39 namespace vl
40 {
41  class VirtualFile;
42 
47  {
48  public:
49  MD5CheckSum() { memset(mMD5, 0, 16); }
50 
51  const unsigned char* md5() const { return mMD5; }
52 
53  std::string toStdString() const;
54 
55  void compute(void* buffer, int len);
56 
57  void compute(VirtualFile* file);
58 
59  bool operator==(const MD5CheckSum& other) const { return memcmp(mMD5, other.mMD5, 16) == 0; }
60 
61  bool operator!=(const MD5CheckSum& other) const { return memcmp(mMD5, other.mMD5, 16) != 0; }
62 
63  bool operator< (const MD5CheckSum& other) const { return memcmp(mMD5, other.mMD5, 16) < 0; }
64 
65  protected:
66  unsigned char mMD5[16];
67  };
68 }
69 
70 #endif
bool operator==(const MD5CheckSum &other) const
Definition: MD5CheckSum.hpp:59
An abstract class representing a file.
Definition: VirtualFile.hpp:60
Visualization Library main namespace.
bool operator!=(const MD5CheckSum &other) const
Definition: MD5CheckSum.hpp:61
const unsigned char * md5() const
Definition: MD5CheckSum.hpp:51
unsigned char mMD5[16]
Definition: MD5CheckSum.hpp:66
Computes the MD5 of a given buffer or VirtualFile.
Definition: MD5CheckSum.hpp:46