01: package org.bouncycastle.crypto.engines;
02:
03: /**
04: * An implementation of the Camellia key wrapper based on RFC 3657/RFC 3394.
05: * <p>
06: * For further details see: <a href="http://www.ietf.org/rfc/rfc3657.txt">http://www.ietf.org/rfc/rfc3657.txt</a>.
07: */
08: public class CamelliaWrapEngine extends RFC3394WrapEngine {
09: public CamelliaWrapEngine() {
10: super (new CamelliaEngine());
11: }
12: }
|