add all
This commit is contained in:
45
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/ICipher.cs
vendored
Normal file
45
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/ICipher.cs
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto
|
||||
{
|
||||
/// <summary>
|
||||
/// Base interface for a ciphers that do not require data to be block aligned.
|
||||
/// <para>
|
||||
/// Note: In cases where the underlying algorithm is block based, these ciphers may add or remove padding as needed.
|
||||
/// </para>
|
||||
/// </summary>
|
||||
public interface ICipher
|
||||
{
|
||||
/// <summary>
|
||||
/// Return the size of the output buffer required for a Write() plus a
|
||||
/// close() with the write() being passed inputLen bytes.
|
||||
/// <para>
|
||||
/// The returned size may be dependent on the initialisation of this cipher
|
||||
/// and may not be accurate once subsequent input data is processed as the cipher may
|
||||
/// add, add or remove padding, as it sees fit.
|
||||
/// </para>
|
||||
/// </summary>
|
||||
/// <returns>The space required to accommodate a call to processBytes and doFinal with inputLen bytes of input.</returns>
|
||||
/// <param name="inputLen">The length of the expected input.</param>
|
||||
int GetMaxOutputSize(int inputLen);
|
||||
|
||||
/// <summary>
|
||||
/// Return the size of the output buffer required for a write() with the write() being
|
||||
/// passed inputLen bytes and just updating the cipher output.
|
||||
/// </summary>
|
||||
/// <returns>The space required to accommodate a call to processBytes with inputLen bytes of input.</returns>
|
||||
/// <param name="inputLen">The length of the expected input.</param>
|
||||
int GetUpdateOutputSize(int inputLen);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the stream for reading/writing data processed/to be processed.
|
||||
/// </summary>
|
||||
/// <value>The stream associated with this cipher.</value>
|
||||
Stream Stream { get; }
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user