@Deprecated public final class Base64 extends Object
| Modifier and Type | Method and Description |
|---|---|
static byte[] |
decode(String string)
Deprecated.
use Guava BaseEncoding.base64() instead. Internally this is now just a wrapper around guava and will
be removed in waffle 1.8.
|
static String |
encode(byte[] bytes)
Deprecated.
use Guava BaseEncoding.base64() instead. Internally this is now just a wrapper around guava and will
be removed in waffle 1.8.
|
@Deprecated public static String encode(byte[] bytes)
bytes - The block of data that is to be Base-64 encoded.String containing the encoded data.@Deprecated public static byte[] decode(String string)
string - The Base-64 encoded string that is to be decoded.byte[] containing the decoded data block.Copyright © 2010-2014 com.github.dblock. All Rights Reserved.