This implementation is set to work with a 64 bit word size.
Implementation courtesy of Tito Pena.
46474849505152
public static class ECB64 extends BaseBlockCipher { public ECB64() { super(new RC564Engine()); }
876877878879880881882
static public class RC564 extends JCEBlockCipher { public RC564() { super(new RC564Engine()); }
900901902903904905906
849850851852853854855