mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 16:10:42 +08:00
14 lines
308 B
C++
14 lines
308 B
C++
#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
|