Dave Kirby
Dave Kirby

Reputation: 26552

How to use the Windows CryptoAPI from Python?

I am looking at using the Windows CryptoAPI from Python, but I can't find any existing modules for it - the win32crypt module that comes as part of the win32all suite only exposes a couple of high level functions that are of no use to me.

Are there any existing modules that wrap the CryptoAPI? Searching PyPi has come up with zip. Failing that example code on calling the API from ctypes, cython etc would be useful.

Upvotes: 3

Views: 4365

Answers (1)

This : How can I use a DLL file from Python? + Getting the addresses of the functions you need from Crypt32.dll should work.

Upvotes: 1

Related Questions