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