AesWrapEngine.cs 579 B

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