1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- namespace Org.BouncyCastle.Crypto
- {
-
- public interface IDigest
- {
-
- string AlgorithmName { get; }
-
- int GetDigestSize();
-
- int GetByteLength();
-
- void Update(byte input);
-
- void BlockUpdate(byte[] input, int inOff, int length);
-
- int DoFinal(byte[] output, int outOff);
-
- void Reset();
- }
- }
- #endif
|