java.lang.Object
com.sun.xml.messaging.saaj.util.Base64
Deprecated, for removal: This API element is subject to removal in a future version.
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
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
base64Decode
(String orig) Deprecated, for removal: This API element is subject to removal in a future version.byte[]
decode
(byte[] base64Data) Deprecated, for removal: This API element is subject to removal in a future version.Decodes Base64 data into octectsstatic byte[]
encode
(byte[] binaryData) Deprecated, for removal: This API element is subject to removal in a future version.Encodes hex octects into Base64
-
Method Details
-
encode
public static byte[] encode(byte[] binaryData) Deprecated, for removal: This API element is subject to removal in a future version.Encodes hex octects into Base64- Parameters:
binaryData
- Array containing binaryData- Returns:
- Encoded Base64 array
-
decode
public byte[] decode(byte[] base64Data) Deprecated, for removal: This API element is subject to removal in a future version.Decodes Base64 data into octects- Parameters:
base64Data
- Byte array containing Base64 data- Returns:
- Array containind decoded data.
-
base64Decode
Deprecated, for removal: This API element is subject to removal in a future version.
-
Base64
instead