home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / java / util / base64encoder.java < prev    next >
Text File  |  1995-08-11  |  3KB  |  102 lines

  1. /*
  2.  * @(#)BASE64Encoder.java    1.2 95/03/16 Chuck McManis
  3.  *
  4.  * Copyright (c) 1995 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19. package java.util;
  20.  
  21. import java.io.OutputStream;
  22. import java.io.InputStream;
  23. import java.io.PrintStream;
  24.  
  25. /**
  26.  * This class implements a BASE64 Character encoder as specified in RFC1113.
  27.  * This RFC is part of the Privacy Enhanced Mail (PEM) specification as
  28.  * published by the Internet Engineering Task Force (IETF). Unlike some
  29.  * other encoding schemes there is nothing in this encoding that indicates
  30.  * where a buffer starts or ends.
  31.  *
  32.  * This means that the encoded text will simply start with the first line
  33.  * of encoded text and end with the last line of encoded text.
  34.  *
  35.  * @version    1.2, 16 Mar 1995
  36.  * @author    Chuck McManis
  37.  * @see        CharacterEncoder
  38.  * @see        BASE64Decoder
  39.  */
  40.  
  41. public class BASE64Encoder extends CharacterEncoder {
  42.     
  43.     /** this class encodes three bytes per atom. */
  44.     int bytesPerAtom() {
  45.     return (3);
  46.     }
  47.  
  48.     /** this class encodes 48 bytes per line. */
  49.     int bytesPerLine() {
  50.     return (48);
  51.     }
  52.  
  53.     /** This array maps the characters to their 6 bit values */
  54.     private final static char pem_array[] = {
  55.     //       0   1   2   3   4   5   6   7
  56.         'A','B','C','D','E','F','G','H', // 0
  57.         'I','J','K','L','M','N','O','P', // 1
  58.         'Q','R','S','T','U','V','W','X', // 2
  59.         'Y','Z','a','b','c','d','e','f', // 3
  60.         'g','h','i','j','k','l','m','n', // 4
  61.         'o','p','q','r','s','t','u','v', // 5
  62.         'w','x','y','z','0','1','2','3', // 6
  63.         '4','5','6','7','8','9','+','/'  // 7
  64.     };
  65.  
  66.     /** 
  67.      * enocodeAtom - Take three bytes of input and encode it as 4
  68.      * printable characters. Note that if the length in len is less
  69.      * than three is encodes either one or two '=' signs to indicate
  70.      * padding characters.
  71.      */
  72.     void encodeAtom(OutputStream outStream, byte data[], int offset, int len) {
  73.     byte a, b, c;
  74.  
  75.     if (len == 1) {
  76.         a = data[offset];
  77.         b = 0;
  78.         c = 0;
  79.         outStream.write(pem_array[(a >>> 2) & 0x3F]);
  80.         outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
  81.         outStream.write('=');
  82.         outStream.write('=');
  83.     } else if (len == 2) {
  84.         a = data[offset];
  85.         b = data[offset+1];
  86.         c = 0;
  87.         outStream.write(pem_array[(a >>> 2) & 0x3F]);
  88.         outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
  89.         outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
  90.         outStream.write('=');
  91.     } else {
  92.         a = data[offset];
  93.         b = data[offset+1];
  94.         c = data[offset+2];
  95.         outStream.write(pem_array[(a >>> 2) & 0x3F]);
  96.         outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
  97.         outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
  98.         outStream.write(pem_array[c & 0x3F]);
  99.     }
  100.     }
  101. }
  102.