C# Класс StreamCryptor.Model.EncryptedFileFooter

Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
SetFooterChecksum ( byte chunkCount, byte chunkOverallLength, byte ephemeralKey, int footerChecksumLength ) : void

Sets the footer checksum.

ValidateFooterChecksum ( byte chunkCount, byte chunkOverallLength, byte ephemeralKey, int footerChecksumLength ) : void

Validates the footer checksum.

Описание методов

SetFooterChecksum() публичный Метод

Sets the footer checksum.
public SetFooterChecksum ( byte chunkCount, byte chunkOverallLength, byte ephemeralKey, int footerChecksumLength ) : void
chunkCount byte Number of chunks in the file.
chunkOverallLength byte Length of all chunks in the file.
ephemeralKey byte A 64 byte key.
footerChecksumLength int The length of the checksum.
Результат void

ValidateFooterChecksum() публичный Метод

Validates the footer checksum.
public ValidateFooterChecksum ( byte chunkCount, byte chunkOverallLength, byte ephemeralKey, int footerChecksumLength ) : void
chunkCount byte Number of chunks in the file.
chunkOverallLength byte Length of all chunks in the file.
ephemeralKey byte A 64 byte key.
footerChecksumLength int The length of the checksum.
Результат void