Table of Contents

Interface IWrapper

Namespace
Org.BouncyCastle.Crypto
Assembly
BouncyCastle.Cryptography.dll
public interface IWrapper

Properties

AlgorithmName

The name of the algorithm this cipher implements.

string AlgorithmName { get; }

Property Value

string

Methods

Init(bool, ICipherParameters)

void Init(bool forWrapping, ICipherParameters parameters)

Parameters

forWrapping bool
parameters ICipherParameters

Unwrap(byte[], int, int)

byte[] Unwrap(byte[] input, int inOff, int length)

Parameters

input byte[]
inOff int
length int

Returns

byte[]

Wrap(byte[], int, int)

byte[] Wrap(byte[] input, int inOff, int length)

Parameters

input byte[]
inOff int
length int

Returns

byte[]