Initializes a new instance of the PKCS7SignatureHandler class, providing an already-loaded PKCS#12 object. For example, an
System.Security.Cryptography.X509Certificates.X509Certificate2 exported with
System.Security.Cryptography.X509Certificates.X509ContentType.Pkcs12 or a file's contents.
Syntax
'Declaration
Public Function New( _
ByVal () As Byte _
)
'Usage
Dim pkcs12Data() As Byte
Dim instance As New PKCS7SignatureHandler(pkcs12Data)
public PKCS7SignatureHandler(
byte[]
)
public: PKCS7SignatureHandler(
byte[]*
)
public:
PKCS7SignatureHandler(
array<byte>^
)
Parameters
- pkcs12Data
- The PKCS#12 store data.
See Also