base64.h

来自「思科路由器仿真器,用来仿7200系列得,可以在电脑上模拟路由器-Cisco ro」· C头文件 代码 · 共 21 行

H
21
字号
/* * base64.c -- base-64 conversion routines. * * For license terms, see the file COPYING in this directory. * * This base 64 encoding is defined in RFC2045 section 6.8, * "Base64 Content-Transfer-Encoding", but lines must not be broken in the * scheme used here. */#ifndef __BASE64_H__#define __BASE64_H__/* Encode into base64 */void base64_encode(unsigned char *out,const unsigned char *in,int inlen);/* Decode from base64 */int base64_decode(char *out,const char *in,int maxlen);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?