代码拉取完成,页面将自动刷新
#include <stdio.h>
#include <uuid/uuid.h>
#include <resolv.h> //b64_pton
#include <string.h>
//生成UUID
char* gen_uuid(void)
{
static char uuid_str[37];
uuid_t uuid;
uuid_generate(uuid);
uuid_unparse(uuid, uuid_str);
return uuid_str;
}
// base64解码
//base64: 需要解码的base64字符串
//decoded: 解码后的数据
//返回值: 解码后的数据大小
size_t base64_decode(const char* base64, char* decoded)
{
// 计算解码后的数据大小
size_t decoded_size = (strlen(base64) / 4 + 1) * 3;
// 解码base64字符串
int size = b64_pton(base64, decoded, decoded_size);
if (size < 0)
{
return 0;
}
return size;
}
int main()
{
puts(gen_uuid());
char text[100];
int size = base64_decode("6YGT5Y+v6YGT6Z2e5bi46YGT", text);
printf("%*s\n", size, text);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。