Files
AES/Base64_HPP.hpp
samsonjaw faaa11b3b5 Add files via upload
add pkcs7 and ECB
2024-03-17 15:12:46 +08:00

17 lines
264 B
C++

#ifndef Base64_HPP
#define Base64_HPP
#include<iostream>
#include<string>
using namespace std;
extern int sBase64[64];
string Base64_encode(string str);
unsigned char BaseValue(char c);
string Base64_decode(string str);
#endif // !Base64_HPP