StreamBlockCipher public class StreamBlockCipher : IStreamCipher Documentation public string AlgorithmName { get; } public StreamBlockCipher(IBlockCipherMode cipherMode) public void Init(bool forEncryption, ICipherParameters parameters) public void ProcessBytes(byte[] input, int inOff, int length, byte[] output, int outOff) public virtual void ProcessBytes(ReadOnlySpan<byte> input, Span<byte> output) public void Reset() public byte ReturnByte(byte input)