Class cryptix.mime.Base64
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class cryptix.mime.Base64

java.lang.Object
   |
   +----cryptix.mime.Base64

public class Base64
extends Object

Variable Index

 o dec_table
 o enc_table
a static array that maps 6 bit integers to a specific char

Constructor Index

 o Base64()

Method Index

 o decode(byte[])
 o decode(String)
 o encode(byte[])
 o encode(String)

Variables

 o enc_table
  protected final static char enc_table[]
a static array that maps 6 bit integers to a specific char
 o dec_table
  protected final static byte dec_table[]

Constructors

 o Base64
  public Base64()

Methods

 o encode
  public static String encode(byte buf[])
 o encode
  public static String encode(String s)
 o decode
  public static byte[] decode(byte buf[])
 o decode
  public static byte[] decode(String msg)

All Packages  Class Hierarchy  This Package  Previous  Next  Index