mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 16:10:42 +08:00
提供更多文本转换模式
This commit is contained in:
13
others/C++/text converter/include/SHA384Converter.hpp
Normal file
13
others/C++/text converter/include/SHA384Converter.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef SHA384CONVERTER_HPP
|
||||
#define SHA384CONVERTER_HPP
|
||||
|
||||
#include "Converter.hpp"
|
||||
#include <string>
|
||||
|
||||
class SHA384Converter : public Converter {
|
||||
public:
|
||||
std::string convert(const std::string& input) override;
|
||||
std::string getName() const override { return "SHA384"; }
|
||||
};
|
||||
|
||||
#endif // SHA384CONVERTER_HPP
|
||||
Reference in New Issue
Block a user