org.bolson
Class Base64

java.lang.Object
  extended by org.bolson.Base64

public class Base64
extends java.lang.Object


Constructor Summary
Base64()
           
 
Method Summary
static byte[] decode(char[] in)
           
static byte[] decode(char[] in, short[] decodeTable)
           
static byte[] decodeHttp(char[] in)
           
static char[] encode(byte[] in)
           
static char[] encode(byte[] in, char[] table)
           
static char[] encodeHttp(byte[] in)
           
static void main(java.lang.String[] argv)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Base64

public Base64()
Method Detail

encode

public static char[] encode(byte[] in)

encodeHttp

public static char[] encodeHttp(byte[] in)

encode

public static char[] encode(byte[] in,
                            char[] table)

decode

public static byte[] decode(char[] in)

decodeHttp

public static byte[] decodeHttp(char[] in)

decode

public static byte[] decode(char[] in,
                            short[] decodeTable)

main

public static void main(java.lang.String[] argv)