|
RFC4648
IntroductionA complete RFC-4648 implementation. Detailsfinal Base base = new BaseXXX(); // now you can use various #encode, #decode methods Apache Commons Codec Proxyfinal 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