📄 keybcs.java
字号:
package cryptix.pgp.charset;import cryptix.pgp.*;/** * @author Jill Baker */public abstract class Keybcs extends SimpleCharSet{ public final static byte[] encode( byte[] buffer ) { return SimpleCharSet.translate( buffer, toExt ); } public final static byte[] decode( byte[] buffer ) { return SimpleCharSet.translate( buffer, toInt ); }/* * The following tables are derived from tables which originally appeared * in the source file CHARSET.C from the PGP program. Here is the * original copyright information from that file.... * * (c) Copyright 1990-1996 by Philip Zimmermann. All rights reserved. * The author assumes no liability for damages resulting from the use * of this software, even if the damage results from defects in this * software. No warranty is expressed or implied. * * Code that has been incorporated into PGP from other sources was * either originally published in the public domain or is used with * permission from the various authors. */ private final static byte toExt[] = { (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) 65, (byte) UNK, (byte) 76, (byte) UNK, (byte) 156, (byte) 83, (byte) 173, (byte) UNK, (byte) 155, (byte) 83, (byte) 134, (byte) 90, (byte) UNK, (byte) 146, (byte) 90, (byte) 248, (byte) UNK, (byte) UNK, (byte) 108, (byte) UNK, (byte) 140, (byte) 115, (byte) UNK, (byte) UNK, (byte) 168, (byte) 115, (byte) 159, (byte) 122, (byte) UNK, (byte) 145, (byte) 122, (byte) 171, (byte) 143, (byte) 65, (byte) 65, (byte) 142, (byte) 138, (byte) 67, (byte) 67, (byte) 128, (byte) 144, (byte) 69, (byte) 69, (byte) 137, (byte) 139, (byte) 73, (byte) 133, (byte) 68, (byte) 78, (byte) 165, (byte) 149, (byte) 167, (byte) 79, (byte) 153, (byte) UNK, (byte) 158, (byte) 166, (byte) 151, (byte) 85, (byte) 154, (byte) 157, (byte) 84, (byte) 225, (byte) 170, (byte) 160, (byte) 97, (byte) 97, (byte) 132, (byte) 141, (byte) 99, (byte) 99, (byte) 135, (byte) 130, (byte) 101, (byte) UNK, (byte) 136, (byte) 161, (byte) 105, (byte) 131, (byte) 100, (byte) 110, (byte) 164, (byte) 162, (byte) 147, (byte) 111, (byte) 148, (byte) UNK, (byte) 169, (byte) 150, (byte) 163, (byte) 117, (byte) 129, (byte) 152, (byte) 116, (byte) UNK }; private final static byte toInt[] = { (byte) 200, (byte) 252, (byte) 233, (byte) 239, (byte) 228, (byte) 207, (byte) 171, (byte) 232, (byte) 236, (byte) 204, (byte) 197, (byte) 205, (byte) 181, (byte) 229, (byte) 196, (byte) 193, (byte) 201, (byte) 190, (byte) 174, (byte) 244, (byte) 246, (byte) 211, (byte) 249, (byte) 218, (byte) 253, (byte) 214, (byte) 220, (byte) 169, (byte) 165, (byte) 221, (byte) 216, (byte) 187, (byte) 225, (byte) 237, (byte) 243, (byte) 250, (byte) 242, (byte) 210, (byte) 217, (byte) 212, (byte) 185, (byte) 248, (byte) 224, (byte) 192, (byte) UNK, (byte) 167, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) 223, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) 176, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK, (byte) UNK };}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -