Ejemplo n.º 1
0
 /**
  * process a single byte, producing an output block if necessary.
  *
  * @param in the input byte.
  * @param out the space for any output that might be produced.
  * @param outOff the offset from which the output will be copied.
  * @return the number of output bytes copied to out.
  * @exception DataLengthException if there isn't enough space in out.
  * @exception InvalidOperationException if the cipher isn't initialised.
  */
 public override int ProcessByte(
     byte input,
     byte[]  output,
     int outOff)
 {
     return(cipher.ProcessByte(input, output, outOff));
 }