SevenZipCipher

SevenZipCipher class

Base class for AES cipher used for 7-zip encryption.

public abstract class SevenZipCipher : ICryptoTransform

Properties

NameDescription
abstract CanReuseTransform { get; }Gets a value indicating whether the current transform can be reused.
abstract CanTransformMultipleBlocks { get; }Gets a value indicating whether multiple blocks can be transformed.
abstract InputBlockSize { get; }Gets the input block size.
abstract OutputBlockSize { get; }Gets the output block size.

Methods

NameDescription
abstract Dispose()Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
abstract TransformBlock(byte[], int, int, byte[], int)Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array.
abstract TransformFinalBlock(byte[], int, int)Transforms the specified region of the specified byte array.

See Also