Package org.firebirdsql.util
Class Base64DecoderImpl
- java.lang.Object
-
- org.firebirdsql.util.Base64DecoderImpl
-
- All Implemented Interfaces:
Base64Decoder
public class Base64DecoderImpl extends java.lang.Object implements Base64Decoder
Java 8 and higher implementation ofBase64Decoder
.- Author:
- Mark Rotteveel
-
-
Constructor Summary
Constructors Constructor Description Base64DecoderImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
decodeBase64(java.lang.String base64)
Decodes a base64 encoded string to a byte array.
-
-
-
Method Detail
-
decodeBase64
public byte[] decodeBase64(java.lang.String base64)
Description copied from interface:Base64Decoder
Decodes a base64 encoded string to a byte array.- Specified by:
decodeBase64
in interfaceBase64Decoder
- Parameters:
base64
- Base64 encoded data- Returns:
- byte array after decoding
-
-