org.apache.anteater.util
Class Base64
java.lang.Object
|
+--org.apache.anteater.util.Base64
- public final class Base64
- extends Object
This class provides encode/decode for RFC 2045 Base64 as
defined by RFC 2045, N. Freed and N. Borenstein.
RFC 2045: Multipurpose Internet Mail Extensions (MIME)
Part One: Format of Internet Message Bodies. Reference
1996 Available at: http://www.ietf.org/rfc/rfc2045.txt
This class is used by XML Schema binary format validation
- Version:
- $Revision: 1.1.1.1 $ $Date: 2001/10/02 16:11:01 $
- Author:
- Jeffrey Rodriguez
Method Summary |
static String |
base64Decode(String orig)
|
byte[] |
decode(byte[] base64Data)
Decodes Base64 data into octects |
static byte[] |
encode(byte[] binaryData)
Encodes hex octects into Base64 |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Base64
public Base64()
encode
public static byte[] encode(byte[] binaryData)
- Encodes hex octects into Base64
- Parameters:
binaryData
- Array containing binaryData
- Returns:
- Encoded Base64 array
decode
public byte[] decode(byte[] base64Data)
- Decodes Base64 data into octects
- Returns:
- Array containind decoded data.
base64Decode
public static String base64Decode(String orig)
Ant Functional Tester -- see Project home page for details