PowerTCP Zip Compression for .NET
ZipDecryptingStream Constructor




When reading, the encrypted data stream to be decrypted. When writing, the stream to be filled with decrypted data.
The password to be used for decryption.
The CRC (cyclic redundancy check) number to be used during decryption.
Creates a stream that will apply standard Zip decryption to encrypted data passing through it.
Syntax
Public Function New( _
   ByVal innerStream As Stream, _
   ByVal password As String, _
   ByVal crc As Long _
)
Dim innerStream As Stream
Dim password As String
Dim crc As Long
 
Dim instance As New ZipDecryptingStream(innerStream, password, crc)
public ZipDecryptingStream( 
   Stream innerStream,
   string password,
   long crc
)
public: ZipDecryptingStream( 
   Stream* innerStream,
   string* password,
   long crc
)
public:
ZipDecryptingStream( 
   Stream^ innerStream,
   String^ password,
   int64 crc
)

Parameters

innerStream
When reading, the encrypted data stream to be decrypted. When writing, the stream to be filled with decrypted data.
password
The password to be used for decryption.
crc
The CRC (cyclic redundancy check) number to be used during decryption.
Remarks

Standard Zip decryption will be applied to all bytes passing through this stream.

See Also

Reference

ZipDecryptingStream Class
ZipDecryptingStream Members


PowerTCP Zip for .NET Documentation Version 2.1.1
© 2018 Dart Communications. All Rights Reserved.
Send comments on this topic