C# Class PRI.ProductivityExtensions.CryptoAPITransformExtensions.CryptoAPITransformable

Class that contains extension methods that extend CryptoAPITransform
Show file Open project: peteraritchie/ProductivityExtensions

Public Methods

Method Description
TransformBlock ( this cryptoapitransform, Byte inputBuffer, Byte outputBuffer, Int32 outputOffset ) : Int32

Extends TransformBlock so that buffer offset of 0 and call to Array.Length are not needed. cryptoapitransform.TransformBlock(inputBuffer, outputBuffer, outputOffset);

TransformFinalBlock ( this cryptoapitransform, Byte inputBuffer ) : Byte[]

Extends TransformFinalBlock so that buffer offset of 0 and call to Array.Length are not needed. cryptoapitransform.TransformFinalBlock(inputBuffer);

Method Details

TransformBlock() public static method

Extends TransformBlock so that buffer offset of 0 and call to Array.Length are not needed. cryptoapitransform.TransformBlock(inputBuffer, outputBuffer, outputOffset);
public static TransformBlock ( this cryptoapitransform, Byte inputBuffer, Byte outputBuffer, Int32 outputOffset ) : Int32
cryptoapitransform this
inputBuffer Byte
outputBuffer Byte
outputOffset System.Int32
return System.Int32

TransformFinalBlock() public static method

Extends TransformFinalBlock so that buffer offset of 0 and call to Array.Length are not needed. cryptoapitransform.TransformFinalBlock(inputBuffer);
public static TransformFinalBlock ( this cryptoapitransform, Byte inputBuffer ) : Byte[]
cryptoapitransform this
inputBuffer Byte
return Byte[]