Table of Contents

Interface IAsymmetricBlockCipher

Namespace
Enterprises.Org.BouncyCastle.Crypto
Assembly
Enterprises.BouncyCastle.Crypto.dll
public interface IAsymmetricBlockCipher

Properties

AlgorithmName

string AlgorithmName { get; }

Property Value

string

Methods

GetInputBlockSize()

int GetInputBlockSize()

Returns

int

GetOutputBlockSize()

int GetOutputBlockSize()

Returns

int

Init(bool, ICipherParameters)

void Init(bool forEncryption, ICipherParameters parameters)

Parameters

forEncryption bool
parameters ICipherParameters

ProcessBlock(byte[], int, int)

byte[] ProcessBlock(byte[] inBuf, int inOff, int inLen)

Parameters

inBuf byte[]
inOff int
inLen int

Returns

byte[]