Octane API Client
Loading...
Searching...
No Matches
hash.h
Go to the documentation of this file.
1
11#ifndef OCTANE_API_CLIENT_INTERNAL_HASH_H_
12#define OCTANE_API_CLIENT_INTERNAL_HASH_H_
13
14#include <vector>
15#include <string>
16
17namespace octane::internal {
26 std::string convToHex(const std::vector<std::uint8_t>& data);
35 std::string generateHash(const std::vector<std::uint8_t>& src);
36} // namespace octane::internal
37
38#endif // OCTANE_API_CLIENT_INTERNAL_HASH_H_
Definition: api_bridge.cpp:25
std::string convToHex(const std::vector< std::uint8_t > &data)
バイナリシーケンスを16進数文字列に変換する。
Definition: hash.cpp:24
std::string generateHash(const std::vector< std::uint8_t > &src)
ハッシュ値を生成する。
Definition: hash.cpp:34