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