X509Certificate Constructor (Byte[], String, X509KeyStorageFlags)
Initializes a new instance of the X509Certificate class using a byte array, a password, and a key storage flag.
Assembly: mscorlib (in mscorlib.dll)
public X509Certificate( byte[] rawData, string password, X509KeyStorageFlags keyStorageFlags )
Parameters
- rawData
- Type: System.Byte[]
A byte array containing data from an X.509 certificate.
- password
- Type: System.String
The password required to access the X.509 certificate data.
- keyStorageFlags
- Type: System.Security.Cryptography.X509Certificates.X509KeyStorageFlags
One of the X509KeyStorageFlags values.
| Exception | Condition |
|---|---|
| CryptographicException | An error with the certificate occurs. For example:
|
| ArgumentException | The rawData parameter is null. -or- The length of the rawData parameter is 0. |
This constructor creates a new X509Certificate object using a byte array, a password that is needed to access the certificate data, and a key storage flag. Calling this constructor with the correct password decrypts the private key and saves it to a Microsoft Cryptographic API Cryptographic Service Provider (CSP).
The X509KeyStorageFlags value can be used to control where and how the private key is imported.
ASN.1 DER is the only certificate format supported by this class.
Security Note: |
|---|
Never hard code a password within your source code. Hard-coded passwords can be retrieved from an assembly using the MSIL Disassembler (Ildasm.exe), a hex editor, or by simply opening the assembly in a text editor such as Notepad.exe. |
If you create an X509Certificate certificate by specifying a PKCS7 signed file store for rawData, the X509Certificate is created for the certificate that signed the store rather than for any of the certificates within the store.
- KeyContainerPermission
for permission to create a key container. Associated enumeration: Create Security action: Demand
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Security Note: