My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
RFC4648  
RFC-4648 Implementation.
Base, Base64, Base32, Hex, Base64URL, Base32Hex, RFC-4648, RFC, 4648, Featured, Phase-Implementation
Updated Aug 11, 2011 by ona...@gmail.com

Introduction

A complete RFC-4648 implementation.

Details

final Base base = new BaseXXX();
// now you can use various #encode, #decode methods

Apache Commons Codec Proxy

final BinaryEncoder encoder = (BinaryEncoder)
    BaseBinaryEncoderProxy.newInstance(base);
encoder.encoder(byte[]);

final BinaryDecoder decoder = (BinaryDecoder)
    BaseBinaryDecoderProxy.newInstance(base);
decoder.decode(byte[]);

Apidocs


Sign in to add a comment
Powered by Google Project Hosting