Java org.bouncycastle.util.encoders Base64 fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.util.encoders Base64 fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.util.encoders Base64.

The text is from its open source code.

Constructor

Method

byte[]decode(byte[] data)
decode the base 64 encoded input data.
byte[]decode(String data)
decode the base 64 encoded String data - whitespace will be ignored.
intdecode(String data, OutputStream out)
decode the base 64 encoded String data writing it to the given output stream, whitespace characters will be ignored.
byte[]encode(byte[] data)
encode the input data producing a base 64 encoded byte array.
intencode(byte[] data, OutputStream out)
Encode the byte data to base 64 writing it to the given output stream.
byte[]encode(byte[] data, int off, int length)
encode the input data producing a base 64 encoded byte array.
StringtoBase64String(byte[] data)