Verifies the passed in stream as being correctly signed.

Namespace:  DidiSoft
Assembly:  PGPLib (in PGPLib.dll) Version: 1.6.3.19546

Syntax

C#
public bool VerifyStream(
	Stream dataFileStream,
	KeyStore keyStore,
	Stream outputFileStream
)
Visual Basic (Declaration)
Public Function VerifyStream ( _
	dataFileStream As Stream, _
	keyStore As KeyStore, _
	outputFileStream As Stream _
) As Boolean
Visual C++
public:
bool VerifyStream(
	Stream^ dataFileStream, 
	KeyStore^ keyStore, 
	Stream^ outputFileStream
)

Parameters

dataFileStream
Type: System.IO..::.Stream
Input stream from the File to be verified
keyStore
Type: DidiSoft..::.KeyStore
Key store containing the Public key for verification
outputFileStream
Type: System.IO..::.Stream
Output Stream for the uncompressed signed content

Return Value

true if signed correctly, false if not signed with this public key

See Also