C# 클래스 StreamCryptor.Model.EncryptedFileFooter

파일 보기 프로젝트 열기: bitbeans/StreamCryptor 1 사용 예제들

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