CamelliaWrapEngine.cs 563 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 Camellia key wrapper based on RFC 3657/RFC 3394.
  7. /// <p/>
  8. /// For further details see: <a href="http://www.ietf.org/rfc/rfc3657.txt">http://www.ietf.org/rfc/rfc3657.txt</a>.
  9. /// </remarks>
  10. public class CamelliaWrapEngine
  11. : Rfc3394WrapEngine
  12. {
  13. public CamelliaWrapEngine()
  14. : base(new CamelliaEngine())
  15. {
  16. }
  17. }
  18. }
  19. #pragma warning restore
  20. #endif