cp850.java
来自「另一个使用java编写的加密通用算法包」· Java 代码 · 共 138 行
JAVA
138 行
// This file is currently unlocked (change this line if you lock the file)//// $Log: Cp850.java,v $// Revision 1.1.1.1 1997/11/03 22:36:55 hopwood// + Imported to CVS (tagged as 'start').//// Revision 0.2.5.3 1997/02/28 Jill Baker// Complete rewrite//// Revision 0.2.5.2 1997/02/26 Jill Baker// Complete rewrite.//// Revision 0.2.5.1 1997/02/24 Jill Baker// Original version//// If this file is unlocked, or locked by someone other than you, then you// may download this file for incorporation into your build, however any// changes you make to your copy of this file will be considered volatile,// and will not be incorporated into the master build which is maintained// at this web site.//// If you wish to make permanent changes to this file, you must wait until// it becomes unlocked (if it is not unlocked already), and then lock it// yourself. Whenever the file is locked by you, you may upload new master// versions to the master site. Make sure you update the history information// above. When your changes are complete, you should relinquish the lock to// make it available for other developers.// $Endlog$package cryptix.pgp.charset;import cryptix.pgp.*;/** * <p><b>$Revision: 1.1.1.1 $</b> * @author Jill Baker */public class Cp850 extends SimpleCharSet{ private Cp850() {} // static methods only 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) 186, (byte) 205, (byte) 201, (byte) 187, (byte) 200, (byte) 188, (byte) 204, (byte) 185, (byte) 203, (byte) 202, (byte) 206, (byte) 223, (byte) 220, (byte) 219, (byte) 254, (byte) 242, (byte) 179, (byte) 196, (byte) 218, (byte) 191, (byte) 192, (byte) 217, (byte) 195, (byte) 180, (byte) 194, (byte) 193, (byte) 197, (byte) 176, (byte) 177, (byte) 178, (byte) 213, (byte) 159, (byte) 255, (byte) 173, (byte) 189, (byte) 156, (byte) 207, (byte) 190, (byte) 221, (byte) 245, (byte) 249, (byte) 184, (byte) 166, (byte) 174, (byte) 170, (byte) 240, (byte) 169, (byte) 238, (byte) 248, (byte) 241, (byte) 253, (byte) 252, (byte) 239, (byte) 230, (byte) 244, (byte) 250, (byte) 247, (byte) 251, (byte) 167, (byte) 175, (byte) 172, (byte) 171, (byte) 243, (byte) 168, (byte) 183, (byte) 181, (byte) 182, (byte) 199, (byte) 142, (byte) 143, (byte) 146, (byte) 128, (byte) 212, (byte) 144, (byte) 210, (byte) 211, (byte) 222, (byte) 214, (byte) 215, (byte) 216, (byte) 209, (byte) 165, (byte) 227, (byte) 224, (byte) 226, (byte) 229, (byte) 153, (byte) 158, (byte) 157, (byte) 235, (byte) 233, (byte) 234, (byte) 154, (byte) 237, (byte) 232, (byte) 225, (byte) 133, (byte) 160, (byte) 131, (byte) 198, (byte) 132, (byte) 134, (byte) 145, (byte) 135, (byte) 138, (byte) 130, (byte) 136, (byte) 137, (byte) 141, (byte) 161, (byte) 140, (byte) 139, (byte) 208, (byte) 164, (byte) 149, (byte) 162, (byte) 147, (byte) 228, (byte) 148, (byte) 246, (byte) 155, (byte) 151, (byte) 163, (byte) 150, (byte) 129, (byte) 236, (byte) 231, (byte) 152 }; private final static byte toInt[] = { (byte) 199, (byte) 252, (byte) 233, (byte) 226, (byte) 228, (byte) 224, (byte) 229, (byte) 231, (byte) 234, (byte) 235, (byte) 232, (byte) 239, (byte) 238, (byte) 236, (byte) 196, (byte) 197, (byte) 201, (byte) 230, (byte) 198, (byte) 244, (byte) 246, (byte) 242, (byte) 251, (byte) 249, (byte) 255, (byte) 214, (byte) 220, (byte) 248, (byte) 163, (byte) 216, (byte) 215, (byte) 159, (byte) 225, (byte) 237, (byte) 243, (byte) 250, (byte) 241, (byte) 209, (byte) 170, (byte) 186, (byte) 191, (byte) 174, (byte) 172, (byte) 189, (byte) 188, (byte) 161, (byte) 171, (byte) 187, (byte) 155, (byte) 156, (byte) 157, (byte) 144, (byte) 151, (byte) 193, (byte) 194, (byte) 192, (byte) 169, (byte) 135, (byte) 128, (byte) 131, (byte) 133, (byte) 162, (byte) 165, (byte) 147, (byte) 148, (byte) 153, (byte) 152, (byte) 150, (byte) 145, (byte) 154, (byte) 227, (byte) 195, (byte) 132, (byte) 130, (byte) 137, (byte) 136, (byte) 134, (byte) 129, (byte) 138, (byte) 164, (byte) 240, (byte) 208, (byte) 202, (byte) 203, (byte) 200, (byte) 158, (byte) 205, (byte) 206, (byte) 207, (byte) 149, (byte) 146, (byte) 141, (byte) 140, (byte) 166, (byte) 204, (byte) 139, (byte) 211, (byte) 223, (byte) 212, (byte) 210, (byte) 245, (byte) 213, (byte) 181, (byte) 254, (byte) 222, (byte) 218, (byte) 219, (byte) 217, (byte) 253, (byte) 221, (byte) 175, (byte) 180, (byte) 173, (byte) 177, (byte) 143, (byte) 190, (byte) 182, (byte) 167, (byte) 247, (byte) 184, (byte) 176, (byte) 168, (byte) 183, (byte) 185, (byte) 179, (byte) 178, (byte) 142, (byte) 160 };}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?