1package org.bouncycastle.crypto.engines;
2
3/**
4 * an implementation of the AES Key Wrapper from the NIST Key Wrap
5 * Specification.
6 * <p>
7 * 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>.
8 */
9public class AESWrapEngine
10    extends RFC3394WrapEngine
11{
12    public AESWrapEngine()
13    {
14        super(new AESEngine());
15    }
16}
17