mirror of https://github.com/bsnes-emu/bsnes.git
36 lines
667 B
C++
36 lines
667 B
C++
#ifdef NALL_STRING_INTERNAL_HPP
|
|
|
|
namespace nall {
|
|
|
|
namespace Hash {
|
|
auto CRC16::digest() -> string {
|
|
return hex(value(), 4L);
|
|
}
|
|
|
|
auto CRC32::digest() -> string {
|
|
return hex(value(), 8L);
|
|
}
|
|
|
|
auto SHA256::digest() const -> string {
|
|
string result;
|
|
for(auto n : value()) result.append(hex(n, 2L));
|
|
return result;
|
|
}
|
|
}
|
|
|
|
auto crc16(const string& self) -> string {
|
|
return Hash::CRC16(self.data(), self.size()).digest();
|
|
}
|
|
|
|
auto crc32(const string& self) -> string {
|
|
return Hash::CRC32(self.data(), self.size()).digest();
|
|
}
|
|
|
|
auto sha256(const string& self) -> string {
|
|
return Hash::SHA256(self.data(), self.size()).digest();
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|