Example usage for org.apache.commons.codec.binary BaseNCodec subclass-usage

List of usage examples for org.apache.commons.codec.binary BaseNCodec subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.codec.binary BaseNCodec subclass-usage.

Usage

From source file com.yenlo.identity.application.authenticator.custom.Base32Vitor.java

/**
 * Provides Base32 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc4648.txt">RFC 4648</a>.
 *
 * <p>
 * The class can be parameterized in the following manner with various constructors:
 * </p>

From source file org.saadahmed.codec.Base64Hex.java

/**
 * Provides Base64 Extended Hex encoding and decoding.
 *
 * <p>
 * This class implements a variation of Base64 encoding sometimes known as Base64 Extended Hex,
 * or Base64Hex in short. In Base64Hex, the alphabet starts from '0' (zero) instead of 'A', and

From source file com.ibc.util.Base64.java

/**
 * Provides Base64 encoding and decoding as defined by <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>.
 * 
 * <p>
 * This class implements section <cite>6.8. Base64 Content-Transfer-Encoding</cite> from RFC 2045 <cite>Multipurpose
 * Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies</cite> by Freed and Borenstein.

From source file com.jason.xpass.util.codec.Base64.java

/**
 * Base64 encoder/decoder.  Does not stream, so be careful with
 * using large amounts of data
 *
 * @author Nate Sammons
 * @author Daniel Matuschek