A library for working with phylogenetic and population genetic data.
v0.27.0
utils/tools/hash/functions.hpp
Go to the documentation of this file.
1 #ifndef GENESIS_UTILS_TOOLS_HASH_FUNCTIONS_H_
2 #define GENESIS_UTILS_TOOLS_HASH_FUNCTIONS_H_
3 
4 /*
5  Genesis - A toolkit for working with phylogenetic data.
6  Copyright (C) 2014-2018 Lucas Czech and HITS gGmbH
7 
8  This program is free software: you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation, either version 3 of the License, or
11  (at your option) any later version.
12 
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with this program. If not, see <http://www.gnu.org/licenses/>.
20 
21  Contact:
22  Lucas Czech <lucas.czech@h-its.org>
23  Exelixis Lab, Heidelberg Institute for Theoretical Studies
24  Schloss-Wolfsbrunnenweg 35, D-69118 Heidelberg, Germany
25 */
26 
35 
36 #include <iosfwd>
37 #include <string>
38 
39 namespace genesis {
40 namespace utils {
41 
42 // ================================================================================================
43 // Hashing Types
44 // ================================================================================================
45 
53 enum class HashingFunctions
54 {
58  kMD5,
59 
63  kSHA1,
64 
68  kSHA256
69 };
70 
71 // ================================================================================================
72 // Hashing
73 // ================================================================================================
74 
81 std::string hash_hex( std::shared_ptr<BaseInputSource> source, HashingFunctions hash_fct );
82 
83 } // namespace utils
84 } // namespace genesis
85 
86 #endif // include guard
genesis::utils::HashingFunctions
HashingFunctions
List of the currently implemented hashing functions.
Definition: utils/tools/hash/functions.hpp:53
genesis::utils::hash_hex
std::string hash_hex(std::shared_ptr< BaseInputSource > source, HashingFunctions hash_fct)
Calculate the hash of an input source, using a given hashing function, and return its hex representat...
Definition: utils/tools/hash/functions.cpp:47
genesis::utils::HashingFunctions::kSHA256
@ kSHA256
Use SHA256 for hashing.
input_source.hpp
genesis
Container namespace for all symbols of genesis in order to keep them separate when used as a library.
Definition: placement/formats/edge_color.cpp:42
genesis::utils::HashingFunctions::kMD5
@ kMD5
Use MD5 for hashing.
genesis::utils::HashingFunctions::kSHA1
@ kSHA1
Use SHA1 for hashing.