AesWrapEngine.cs 513 B

1234567891011121314151617181920
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. namespace Org.BouncyCastle.Crypto.Engines
  3. {
  4. /// <remarks>
  5. /// An implementation of the AES Key Wrapper from the NIST Key Wrap 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. /// </remarks>
  9. public class AesWrapEngine
  10. : Rfc3394WrapEngine
  11. {
  12. public AesWrapEngine()
  13. : base(new AesFastEngine())
  14. {
  15. }
  16. }
  17. }
  18. #endif