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
-
dec_table
-
-
enc_table
- a static array that maps 6 bit integers to a specific char
-
Base64()
-
-
decode(byte[])
-
-
decode(String)
-
-
encode(byte[])
-
-
encode(String)
-
enc_table
protected final static char enc_table[]
- a static array that maps 6 bit integers to a specific char
dec_table
protected final static byte dec_table[]
Base64
public Base64()
encode
public static String encode(byte buf[])
encode
public static String encode(String s)
decode
public static byte[] decode(byte buf[])
decode
public static byte[] decode(String msg)
All Packages Class Hierarchy This Package Previous Next Index