mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 08:00:44 +08:00
14 lines
298 B
C++
14 lines
298 B
C++
#ifndef SHA3CONVERTER_HPP
|
|
#define SHA3CONVERTER_HPP
|
|
|
|
#include "Converter.hpp"
|
|
#include <string>
|
|
|
|
class SHA3Converter : public Converter {
|
|
public:
|
|
std::string convert(const std::string& input) override;
|
|
std::string getName() const override { return "SHA3"; }
|
|
};
|
|
|
|
#endif // SHA3CONVERTER_HPP
|