110111112113114115116
public static class RFC3211Wrap extends BaseWrapCipher { public RFC3211Wrap() { super(new RFC3211WrapEngine(new AESFastEngine()), 16); }
147148149150151152153
public static class RFC3211 extends BaseWrapCipher { public RFC3211() { super(new RFC3211WrapEngine(new DESEngine()), 8); }
68697071727374
public static class RFC3211Wrap extends BaseWrapCipher { public RFC3211Wrap() { super(new RFC3211WrapEngine(new CamelliaEngine()), 16); }
123124125126127128129
public static class RFC3211 extends BaseWrapCipher { public RFC3211() { super(new RFC3211WrapEngine(new DESedeEngine()), 8); }
74757677787980
public static class RFC3211Wrap extends WrapCipherSpi { public RFC3211Wrap() { super(new RFC3211WrapEngine(new AESEngine()), 16); }
445446447448449450451
public static class RFC3211DESedeWrap extends WrapCipherSpi { public RFC3211DESedeWrap() { super(new RFC3211WrapEngine(new DESedeEngine()), 8); }
53545556575859
public static class RFC3211Wrap extends WrapCipherSpi { public RFC3211Wrap() { super(new RFC3211WrapEngine(new CamelliaEngine()), 16); }
75767778798081