Example usage for org.apache.commons.codec.binary.yenc YEnc YEnc

List of usage examples for org.apache.commons.codec.binary.yenc YEnc YEnc

Introduction

In this page you can find the example usage for org.apache.commons.codec.binary.yenc YEnc YEnc.

Prototype

YEnc

Source Link

Usage

From source file:org.ambiance.codec.YEncDecoder.java

public void initialize() throws InitializationException {
    decoder = new YEnc();
}

From source file:org.ambiance.codec.YEncEncoder.java

public void initialize() throws InitializationException {
    encoder = new YEnc();

    if (lineSize <= 0)
        throw new InitializationException("Line size must be > to zero.");
}