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