ImSQL
C++ 기반 SQL 자동화 및 라이선스 관리 엔진
Loading...
Searching...
No Matches
license_key_decrypt.hpp
Go to the documentation of this file.
1
12#pragma once
13#include <utils/utils.hpp>
14namespace license {
15
24bool readFile(const std::string& filepath, std::string& out);
25
33std::string decryptAES256(const std::string& cipher, const std::string& uuid_key);
34
43bool loadLicenseFile(const std::string& filepath, std::string& license_json);
44
53bool decryptLicenseData(const std::string& decrypted_data, std::string& plain_text);
54
60std::string getDecryptKey();
61
70bool loadPemFile(const std::string& pem_code, const std::string& license_json_str);
71
72} // namespace license // end of LicenseKeyDecrypt
다양한 범용 유틸리티 함수와 공통 설정을 포함하는 헤더 파일입니다.