pgpradix64.c

来自「著名的加密软件的应用于电子邮件中」· C语言 代码 · 共 19 行

C
19
字号
/*
 * pgpRadix64.c -- Define the armor Table for 6-bit integer to character
 * conversion.
 *
 * Copyright (C) 1995-1997 Pretty Good Privacy, Inc. All rights reserved.
 *
 * $Id: pgpRadix64.c,v 1.1.2.1 1997/06/07 09:50:58 mhw Exp $
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "pgpRadix64.h"

/* This is are table of 6-bit value -> character */
char const armorTable[65] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

⌨️ 快捷键说明

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