01: package org.bouncycastle.crypto.engines;
02:
03: /**
04: * an implementation of the AES Key Wrapper from the NIST Key Wrap
05: * Specification.
06: * <p>
07: * For further details see: <a href="http://csrc.nist.gov/encryption/kms/key-wrap.pdf">http://csrc.nist.gov/encryption/kms/key-wrap.pdf</a>.
08: */
09: public class AESWrapEngine extends RFC3394WrapEngine {
10: public AESWrapEngine() {
11: super (new AESEngine());
12: }
13: }
|