Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than crypt32, prefix the name with the module name and a period.
Declare Function CertGetNameString Lib "Crypt32.dll" Alias "CertGetNameStringW" ( _
ByVal pCertContext As Long, _
ByVal dwType As Long, _
ByVal dwFlags As Long, _
pvTypePara As Any, _
ByVal pszNameString As Long, _
ByVal cchNameString As Long _
) As Long
Declare Function CertGetNameString Lib "crypt32.dll" (TODO) As TODO
Ensure you use StrPtr and that the function signature is "CertGetNameStringW", or you will regularly crash your program!
None.
Tips & Tricks:
You can call this first with a null buffer and null cchNameString to return just the required buffer length, then size the buffer appropriately and call again as above!
Please add some!
Sample Code:
C#:
while ((certContext = CertEnumCertificatesInStore(hCertStore, certContext)) != IntPtr.Zero)
{
StringBuilder Buffer = new StringBuilder(255);
UInt32 cchString = 255 ;
System.UInt32 nChars = CertGetNameString(certContext,
CERT_NAME_FRIENDLY_DISPLAY_TYPE,
CERT_NAME_ISSUER_FLAG,
IntPtr.Zero,
Buffer,
cchString);
// use Buffer.ToString() to use the cert's name string
}
VB:
Dim bfr As String, bPtr As Long
bfr = String(szNameString, vbNullChar)
bPtr = StrPtr(bfr)
szNameString = CertGetNameString(hCert_Context&, _
CERT_NAME_SIMPLE_DISPLAY_TYPE, _
0&, _
0&, _
bPtr&, _
128& _
)
The CertGetNameString function obtains the subject or issuer name from a certificate CERT_CONTEXT structure and converts it to a null-terminated character string.
6/26/2012 2:50:24 PM - -195.250.58.6
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).