Desktop Functions: Smart Device Functions:
|
Search Results for "CertNameToStr" in [All]crypt32
static extern uint CertNameToStr (uint dwCertEncodingType,
Declare Function CertNameToStr Lib "crypt32.dll" (TODO) As TODO
static extern TODO CertNameToStr(TODO);
Declare Function CertNameToStr Lib "crypt32.dll" (TODO) As TODO
[DllImport("crypt32.dll", SetLastError = true, EntryPoint = "CertNameToStr")]
private static extern uint _certNameToStr(uint dwCertEncodingType, IntPtr pName, uint dwStrType, StringBuilder psz, uint csz);
public static string CertNameToStr(byte[] certName)
uint ret = _certNameToStr(X509_ASN_ENCODING, pName, dwStrType, psz, 0);
ret = _certNameToStr(X509_ASN_ENCODING, pName, dwStrType, psz, ret); |