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 SummaryConstructors Constructor Description Base64DecoderImpl()
 - 
Method SummaryAll 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- 
decodeBase64public byte[] decodeBase64(java.lang.String base64) Description copied from interface:Base64DecoderDecodes a base64 encoded string to a byte array.- Specified by:
- decodeBase64in interface- Base64Decoder
- Parameters:
- base64- Base64 encoded data
- Returns:
- byte array after decoding
 
 
- 
 
-