Vista and signing certificate on smart card
Mon, 15 Sep 2008 17:21:13 +0200
Hi all,
unfortunately i got Vista from 2 years and i was unable to use my smart card
reader untill this June.
Now that I have the new (finally working) drivers i don't see my signing
certificate listed on my personal certificates (from IE).
So i don't see it if I write in VB .NET :
Dim storeMy As X509Sto ...
|
NTLM/Kerberous Authentication base64 Client/Server
Sat, 13 Sep 2008 18:02:21 -0700
I have both a client and server process (executables written by me) that
need to use NTLM/Kerberous authentication. Because my Client/Server use a
custom text based protocol I will need to base64 responses from the NTLM
sub system back and forth to each other.
How do I go about doing this? What are the API SSP ...
|
CryptGetProvParam with PP_ROOT_CERTSTORE and PP_USER_CERTSTORE
Wed, 10 Sep 2008 18:04:04 -0700
Good Day,
I'm currently in development of a smart-card based CSP (Old school CSP) so
far everything works fine in 2K and XP but i came across a problem that
(although I have implemented it) I'm not sure if I implemented it correctly.
In Vista, the Certificate Propagation process calls CryptGetProvParam wit ...
|
Another reason for AcquireCredentialsHandle to fail with
SEC_E_INTERNAL_ERROR...
Wed, 10 Sep 2008 07:32:19 -0700 (PDT)
I've been writing an SSL socket server in C++ and testing it on XP
SP2. I couldn't get past AcquireCredentialsHandle - it seemed that
whatever I did it failed with SEC_E_INTERNAL_ERROR.
Eventually I dusted off an old platform sdk cd, installed the samples,
and compiled the SSPI\SSL\WebServer demo. Rather to ...
|
IIS IWA with IE started via smart card credentials.
Wed, 10 Sep 2008 05:53:18 -0700 (PDT)
IIS 6 on Win 2k3
IE 6+ on XP Pro SP2
Hi, I'm starting a IE as the user on a smart card via
createprocesswithlogonw to attempt Integrated Windows Authentication
to a website.
The userid is the string version of the cert, the passwd is the PIN
and there is no domain.
IE starts fine. TaskMgr shows it runnin ...
|
How to import certificate and PrK from PFX file to smart card
Wed, 10 Sep 2008 02:57:01 -0700
I'm struggling with this problem already a few hours.
The task is as follows:
- I've got a PFX (PKCS#12) blob in memory.
- I need to import the certificate and private key to smart card
I can import PFX blob into a certstore using PFXImportCertStore(...)
That returns a HCERTSTORE and I don't know what t ...
|
OpenSCManager() never returns
Tue, 9 Sep 2008 15:56:08 -0700 (PDT)
I've written a custom smart card credential provider for Vista log
on / log off. To facilitate smart card removal behavior once the
user's successfully logged on, I've written a service with a thread
that watches for smart card removal and acts depending on the card
removal settings (lock, log off, shutdown, do ...
|
|
|
smart card minidriver's CardAcquireContext not being
called by BaseCSP
Sun, 07 Sep 2008 15:58:48 -0700
I'm new to the minidriver world and it has been tough to get things
started, there isn't a lot of information out there. My first hurdle was
the fact that windows carries a default Base CSP that is not smart card
enabled, and I finally found out through a document from
Gemalto.lol. Now I have a feeling I'm hav ...
|
CheckTokenMembership returns true for Administrators group
Fri, 5 Sep 2008 08:28:00 -0700
I have code that checks a group membership of a token obtained from
LogonUserEx():
res = ImpersonateLoggedOnUser((HANDLE)userToken);
if (!res) {
return false;
}
HANDLE hThreadToken = NULL;
res = OpenThreadToken(GetCurrentThread(),
TOKEN_DUPLICATE|TOK ...
|
Windows sevices and user permissions
Fri, 5 Sep 2008 00:12:29 -0700 (PDT)
Hi all,
I'm developing a basic windows service.
The developing environment is VC++ 6 on Win XP - SP 3.
The service is being developed as a windows console application that
supports MFC.
It is of SERVICE_WIN32_OWN_PROCESS type and is configured as
SERVICE_AUTO_START.
I've specified NULL for the lpServic ...
|