Utils.hpp 581 B

1234567891011121314151617181920212223242526
  1. /**
  2. ******************************************************************************
  3. * @file : Utils.hpp
  4. * @author : Dream
  5. * @brief : None
  6. * @attention : None
  7. * @date : 24-10-3
  8. ******************************************************************************
  9. */
  10. #ifndef UTILS_HPP
  11. #define UTILS_HPP
  12. #include <string>
  13. // 生成 MD5 签名
  14. class Utils {
  15. public:
  16. static std::string generate_md5(const std::string& data);
  17. // 生成随机数值
  18. static std::string generate_value(time_t &timestamp);
  19. };
  20. #endif // UTILS_HPP