Class Base64

java.lang.Object
hudson.remoting.Base64

@Deprecated public final class Base64 extends Object
Deprecated.
Use Base64 instead
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 This implementation does not encode/decode streaming data. You need the data that you will encode/decode already on a byte array.
Version:
$Id: Base64.java,v 1.4 2007/07/19 04:38:32 ofung Exp $
Author:
Jeffrey Rodriguez, Sandy Gao
  • Constructor Details

    • Base64

      public Base64()
      Deprecated.
  • Method Details

    • encode

      @Nullable public static String encode(byte[] binaryData)
      Deprecated.
      Encodes hex octets into Base64
      Parameters:
      binaryData - Array containing binaryData
      Returns:
      Encoded Base64 array. null if the input is null
    • decode

      @CheckForNull public static byte[] decode(String encoded)
      Deprecated.
      Decodes Base64 data into octets
      Parameters:
      encoded - string containing Base64 data
      Returns:
      Array containing decoded data. null if the data cannot be decoded.