Java org.apache.commons.ssl Base64 fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.ssl Base64 fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.ssl Base64.

The text is from its open source code.

Method

byte[]decodeBase64(String base64String)
Decodes a Base64 String into octets
byte[]decodeBase64(byte[] base64Data)
Decodes Base64 data into octets
byte[]encodeBase64(byte[] binaryData)
Encodes binary data using the base64 algorithm but does not chunk the output.
byte[]encodeBase64(byte[] binaryData, boolean isChunked)
Encodes binary data using the base64 algorithm, optionally chunking the output into 76 character blocks.