Class Base64

java.lang.Object
org.identityconnectors.common.Base64

public final class Base64 extends Object
Utility package for base64 encoding and decoding.
Since:
1.0
  • Method Summary

    Modifier and Type
    Method
    Description
    static byte[]
    decode(String encdata)
    Decodes a specified base64-encoded String and returns the resulting bytes.
    static String
    encode(byte[] data)
    Returns a String of base64-encoded characters to represent the specified data array.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • encode

      public static String encode(byte[] data)
      Returns a String of base64-encoded characters to represent the specified data array.
      Parameters:
      data - The array of bytes to encode.
      Returns:
      A String containing base64-encoded characters.
    • decode

      public static byte[] decode(String encdata)
      Decodes a specified base64-encoded String and returns the resulting bytes.
      Parameters:
      encdata - A String containing base64-encoded characters.
      Returns:
      The base64-decoded array of bytes.