fhq-server  v0.2.33
Documentation for fhq-server. FreeHackQuest is an open source platform for competitions of computer security.
wsjcpp_hashes.h
Go to the documentation of this file.
1 #ifndef WSJCPP_HASHES_H
2 #define WSJCPP_HASHES_H
3 
4 #include <string>
5 
6 class WsjcppHashes {
7  public:
8  static std::string sha1_calc_hex(const std::string &sSource);
9  static std::string md5_calc_hex(const std::string &sSource);
10 };
11 
12 #endif // WSJCPP_HASHES_H
static std::string md5_calc_hex(const std::string &sSource)
Definition: wsjcpp_hashes.cpp:21
Definition: wsjcpp_hashes.h:6
static std::string sha1_calc_hex(const std::string &sSource)
Definition: wsjcpp_hashes.cpp:9