📄 base64coder.h
字号:
/**************************************************************************/
/* */
/* Copyright (c) 2000-2008 YULONG Company */
/* 宇龙计算机通信科技(深圳)有限公司 版权所有 2000-2008 */
/* */
/* PROPRIETARY RIGHTS of YULONG Company are involved in the */
/* subject matter of this material. All manufacturing, reproduction, use,*/
/* and sales rights pertaining to this subject matter are governed by the */
/* license agreement. The recipient of this software implicitly accepts */
/* the terms of the license. */
/* 本软件文档资料是宇龙公司的资产,任何人士阅读和使用本资料必须获得 */
/* 相应的书面授权,承担保密责任和接受相应的法律约束. */
/* */
/**************************************************************************
Copyright (C), 2000-2010, Yulong Tech. Co., Ltd.
FileName:
Author: zhanglei
Version : 1.0
Date: 2007年10月22号
Description:
History:
<author> <time> <version > <desc>
zhanglei 2007/10/22 1.0 Create this moudle
*****************************************************************************/
#pragma once
#include "basecodertool.h"
class CBase64Coder :
public CBaseCoderTool
{
public:
CBase64Coder(void);
public:
~CBase64Coder(void);
public:
virtual int encode( char * content, int csize, LPCTSTR key, int ksize );
virtual int decode( char * content, int csize, LPCTSTR key, int ksize );
virtual int encodeFile( LPTSTR path, LPCTSTR key );
virtual int decodeFile( LPTSTR path, LPCTSTR key );
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -