提供更多文本转换模式

This commit is contained in:
zsyg
2025-07-19 20:13:01 +08:00
committed by GitHub
parent 11df47ff2e
commit 0e90195f9a
12 changed files with 275 additions and 13 deletions

View File

@@ -0,0 +1,13 @@
#ifndef SHA224CONVERTER_HPP
#define SHA224CONVERTER_HPP
#include "Converter.hpp"
#include <string>
class SHA224Converter : public Converter {
public:
std::string convert(const std::string& input) override;
std::string getName() const override { return "SHA224"; }
};
#endif // SHA224CONVERTER_HPP