GetInputBlockSize() public method

public GetInputBlockSize ( ) : int
return int
コード例 #1
0
 /**
  * Return the maximum size for an input block to this engine.
  * For RSA this is always one byte less than the key size on
  * encryption, and the same length as the key size on decryption.
  *
  * @return maximum size for an input block.
  */
 public int GetInputBlockSize()
 {
     return(core.GetInputBlockSize());
 }