Interface IStreamCipher
- Namespace
- Enterprises.Org.BouncyCastle.Crypto
- Assembly
- Enterprises.BouncyCastle.Crypto.dll
public interface IStreamCipher
Properties
AlgorithmName
string AlgorithmName { get; }
Property Value
- string
Methods
Init(bool, ICipherParameters)
void Init(bool forEncryption, ICipherParameters parameters)
Parameters
forEncryption bool
parameters ICipherParameters
ProcessBytes(byte[], int, int, byte[], int)
void ProcessBytes(byte[] input, int inOff, int length, byte[] output, int outOff)
Parameters
input byte[]
inOff int
length int
output byte[]
outOff int
Reset()
ReturnByte(byte)
byte ReturnByte(byte input)
Parameters
input byte
Returns
- byte