mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-07 00:20:43 +08:00
提供更多文本转换模式
This commit is contained in:
13
others/C++/text converter/include/SHA224Converter.hpp
Normal file
13
others/C++/text converter/include/SHA224Converter.hpp
Normal 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
|
||||
Reference in New Issue
Block a user