C# 클래스 ICSharpCode.SharpZipLib.Encryption.PkzipClassicCryptoBase

PkzipClassicCryptoBase provides the low level facilities for encryption and decryption using the PkzipClassic algorithm.
파일 보기 프로젝트 열기: icsharpcode/SharpZipLib

보호된 메소드들

메소드 설명
Reset ( ) : void

Reset the internal state.

SetKeys ( byte keyData ) : void

Set the key schedule for encryption/decryption.

TransformByte ( ) : byte

Transform a single byte

UpdateKeys ( byte ch ) : void

Update encryption keys

메소드 상세

Reset() 보호된 메소드

Reset the internal state.
protected Reset ( ) : void
리턴 void

SetKeys() 보호된 메소드

Set the key schedule for encryption/decryption.
protected SetKeys ( byte keyData ) : void
keyData byte The data use to set the keys from.
리턴 void

TransformByte() 보호된 메소드

Transform a single byte
protected TransformByte ( ) : byte
리턴 byte

UpdateKeys() 보호된 메소드

Update encryption keys
protected UpdateKeys ( byte ch ) : void
ch byte
리턴 void