using capicom with python

stéphane bard stephane_bard at tele2.fr
Thu Jul 20 14:02:04 EDT 2006


thank's for all roger
sorry to answer so late
:-D

Roger Upole a écrit :
> "stéphane bard" <stephane_bard at tele2.fr> wrote in message news:GhRug.185$kp.199 at nntpserver.swip.net...
>> Hi all,
>> Has anyone ever used Python to work with Certificate Services in
>> Windows? I'm trying to capicom dll with pywin32.
>>
>>
>> I've found some reference about python and capicom in
>> this mail archive
>> http://mail.python.org/pipermail/python-win32/2006-March.txt
>>
>> but nothing really helpfull.
>> I try to use windll from ctypes module
>>
>>
>>>> windll.load(
>> but don't get access to capicom.
>>
>> any idea ?
> 
> COM dll's usually aren't designed to be used directly.
> You request instances of the interfaces they implement
> by guid or program id.
> 
> import win32com.client
> certstore=win32com.client.Dispatch('capicom.store')
> certstore.Open(StoreName='Root')
> for cert in certstore.Certificates:
>     print 'SubjectName:', cert.SubjectName, 'IssuerName:', cert.IssuerName
> 
>         Roger
> 
> 
> 
> 
> 



More information about the Python-list mailing list