Create a new Pkcs #12 key store from a stream.

Namespace: TallComponents.PDF.DigitalSignatures
Assembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.1

Syntax

C#
public Pkcs12Store(
	Stream stream,
	string password
)
Visual Basic
Public Sub New ( _
	stream As Stream, _
	password As String _
)

Parameters

stream
Type: System.IO..::..Stream
A stream containing a Pkcs #12 key store.
password
Type: System..::..String
The password required to open the store.

Remarks

The stream may be closed when the constructor completes. It is the responsibility of the client to close the stream.

See Also