Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

mindbright.util
Class Base64  view Base64 download Base64.java

java.lang.Object
  extended bymindbright.util.Base64

public final class Base64
extends java.lang.Object


Field Summary
private static int[] fromBase64
           
private static int PAD_CHAR
           
private static byte[] toBase64
           
 
Constructor Summary
Base64()
           
 
Method Summary
static byte[] decode(byte[] data)
           
static byte[] decode(byte[] encoded, int offset, int length)
           
static byte[] encode(byte[] data)
           
static byte[] encode(byte[] data, int offset, int length)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

fromBase64

private static final int[] fromBase64

toBase64

private static final byte[] toBase64

PAD_CHAR

private static final int PAD_CHAR
See Also:
Constant Field Values
Constructor Detail

Base64

public Base64()
Method Detail

encode

public static byte[] encode(byte[] data)

encode

public static byte[] encode(byte[] data,
                            int offset,
                            int length)

decode

public static byte[] decode(byte[] data)

decode

public static byte[] decode(byte[] encoded,
                            int offset,
                            int length)