C# 클래스 PRI.ProductivityExtensions.CryptoAPITransformExtensions.CryptoAPITransformable

Class that contains extension methods that extend CryptoAPITransform
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
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);

메소드 상세

TransformBlock() 공개 정적인 메소드

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
리턴 System.Int32

TransformFinalBlock() 공개 정적인 메소드

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
리턴 Byte[]