ImSQL
C++ 기반 SQL 자동화 및 라이선스 관리 엔진
Loading...
Searching...
No Matches
encrypt_base64.hpp
Go to the documentation of this file.
1
6#pragma once
7
9
10namespace secure::encrypt {
11
20 size_t encodeBase64(const uint8_t* src, size_t src_len, std::string& dst);
21
28 std::string encodeBase64(std::string_view src);
29
30
38 size_t decodeBase64(const std::string& src, uint8_t* dst);
39
46 std::string decodeBase64(std::string_view src);
47
48} // end of encrypt
Ains Secure Library Common Headers.
size_t encodeBase64(const uint8_t *src, size_t src_len, std::string &dst)
base64 인코딩
Definition encrypt_base64.cpp:44
size_t decodeBase64(const std::string &src, uint8_t *dst)
base64 디코딩 (복호화)
Definition encrypt_base64.cpp:79