GetOutputBlockSize() публичный Метод

public GetOutputBlockSize ( ) : int
Результат int
 /**
  * Return the maximum size for an output block to this engine.
  * For RSA this is always one byte less than the key size on
  * decryption, and the same length as the key size on encryption.
  *
  * @return maximum size for an output block.
  */
 public int GetOutputBlockSize()
 {
     return(core.GetOutputBlockSize());
 }