Files
Sun1602/Server/AuthSystem/CryptLib/Base64.h
T
2022-10-26 12:25:11 +08:00

7 lines
181 B
C++

#pragma once
namespace Crypt
{
void Base64Encode( LPCTSTR data, int size, LPTSTR output, int bufLen );
void Base64Decode( LPCTSTR data, int size, LPTSTR output, int bufLen );
}