com.meterware.httpunit

Class Base64

public class Base64 extends Object

A utility class to convert to and from base 64 encoding.

Author: Russell Gold

Method Summary
static Stringdecode(String source)
Returns the plaintext equivalent of a base 64-encoded string.
static Stringencode(String source)
Returns the base 64 encoded equivalent of a supplied string.

Method Detail

decode

public static String decode(String source)
Returns the plaintext equivalent of a base 64-encoded string.

Parameters: source a base 64 string (which must have a multiple of 4 characters)

encode

public static String encode(String source)
Returns the base 64 encoded equivalent of a supplied string.

Parameters: source the string to encode