mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-07 00:20:43 +08:00
14 lines
308 B
C++
14 lines
308 B
C++
#ifndef SHA512CONVERTER_HPP
|
|
#define SHA512CONVERTER_HPP
|
|
|
|
#include "Converter.hpp"
|
|
#include <string>
|
|
|
|
class SHA512Converter : public Converter {
|
|
public:
|
|
std::string convert(const std::string& input) override;
|
|
std::string getName() const override { return "SHA512"; }
|
|
};
|
|
|
|
#endif // SHA512CONVERTER_HPP
|