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
  
    - forEncryptionbool
- parametersICipherParameters
  ProcessBytes(byte[], int, int, byte[], int)
  
  
  
  
  
    void ProcessBytes(byte[] input, int inOff, int length, byte[] output, int outOff)
   
  Parameters
  
    - inputbyte[]
- inOffint
- lengthint
- outputbyte[]
- outOffint
  Reset()
  
  
  
  
  
  
  
  ReturnByte(byte)
  
  
  
  
  
    byte ReturnByte(byte input)
   
  Parameters
  
    - inputbyte
Returns
  
    - byte