C# Class StreamCryptor.Model.EncryptedFileFooter

Afficher le fichier Open project: bitbeans/StreamCryptor Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
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.

Method Details

SetFooterChecksum() public méthode

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.
Résultat void

ValidateFooterChecksum() public méthode

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.
Résultat void