123456789101112131415161718192021222324 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- namespace Org.BouncyCastle.Crypto
- {
-
-
-
- public interface IVerifierFactory
- {
-
- Object AlgorithmDetails { get ; }
-
-
-
-
-
-
- IStreamCalculator CreateCalculator();
- }
- }
- #endif
|