X509CertificateRequestGetRequestFormat Method (Byte) |
Gets the certificate request format. This method allows to determine whether the
certificate request is encoded in a PKCS#10 (native) or PKCS#7 (enveloped) format.
Namespace:
System.Security.Cryptography.X509CertificateRequests
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public static X509CertificateRequestType GetRequestFormat(
byte[] rawData
)
Public Shared Function GetRequestFormat (
rawData As Byte()
) As X509CertificateRequestType
public:
static X509CertificateRequestType GetRequestFormat(
array<unsigned char>^ rawData
)
static member GetRequestFormat :
rawData : byte[] -> X509CertificateRequestType
Parameters
- rawData
- Type: SystemByte
ASN.1-encoded byte array that represents certificate request.
Return Value
Type:
X509CertificateRequestTypeThe type of the certificate request in a byte array.
See Also