123456789101112131415161718192021222324252627282930313233 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- namespace Org.BouncyCastle.Utilities
- {
- public interface IMemoable
- {
-
-
-
-
-
-
-
- IMemoable Copy();
-
-
-
-
-
-
-
-
-
- void Reset(IMemoable other);
- }
- }
- #endif
|