GM6000 Digital Heater Controller Branch: main
SDX-1330
Md5Checksum.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Md5Checksum_h_
2#define Cpl_Io_File_Md5Checksum_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
16#include "Cpl/Checksum/ApiMd5.h"
17#include "Cpl/Text/String.h"
18
19/// Size, in bytes, of the work buffer used when reading the file contents
20#ifndef OPTION_CPL_IO_FILE_MD5_WORK_BUFFER_SIZE
21#define OPTION_CPL_IO_FILE_MD5_WORK_BUFFER_SIZE 1024
22#endif
23
24///
25namespace Cpl {
26///
27namespace Io {
28///
29namespace File {
30
31
32
33/** This method calculates the MD5 Checksum of the specified file. The
34 method returns true when successful. The caller is required to provide
35 memory for 'dstDigest'
36
37 When 'dstString' is non null, the checksum as a ASCII HEX string is returned.
38
39 When 'dstFileLen' is non null, the length (in bytes) of the file is returned.
40 */
41bool calcMD5Checksum( const char* fullPathName,
43 Cpl::Text::String* dstString = nullptr,
44 size_t* dstFileLen = nullptr );
45
46
47}; // end namespaces
48};
49};
50#endif // end header latch
uint8_t Digest_T[eDIGEST_LEN]
Digest/result of the hash.
Definition ApiMd5.h:40
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
bool calcMD5Checksum(const char *fullPathName, Cpl::Checksum::ApiMd5::Digest_T dstDigest, Cpl::Text::String *dstString=nullptr, size_t *dstFileLen=nullptr)
This method calculates the MD5 Checksum of the specified file.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20