base64.h

来自「ENC28J60 System HTTP」· C头文件 代码 · 共 14 行

H
14
字号
#ifndef _BASE64_H_#define _BASE64_H_#include <stdint.h>//decode helpervoid base64_decode_4to3(unsigned char* buf, unsigned char *res);//decode string given by *buf, return decoded string in *buf!void base64_decode(unsigned char *buf, unsigned char len);//void base64_encode_3to4(unsigned char *buf);//void base64_encode(unsigned char *string);#endif

⌨️ 快捷键说明

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