[Tutor] question about pywin32

Marc Tompkins marc.tompkins at gmail.com
Mon Dec 26 18:50:35 CET 2011


On Mon, Dec 26, 2011 at 5:18 AM, daedae11 <daedae11 at 126.com> wrote:

> **
> Does pywin32 provide a module for AES encryption algorithm ?
>
> The description of some module in pywin32 document is so simple that there
> is not introduction about the function of the function.
> For example, "CryptProtectData" function in module win32crypt.
>
Lie Ryan has already covered this pretty well, but I thought I'd re-state
for clarification:  pywin32 itself does not provide modules for ANYTHING.
pywin32 is just a convenience wrapper for functions that already exist in
the win32 library; without pywin it's a horrible task to call win32
functions from Python.

Since pywin doesn't provide the functions, it also doesn't provide
documentation.  For that, you go to the people who actually wrote the
functions: Microsoft.  In fact, it might make more sense to turn your
search around: look at MSDN _first_ to see what functions are available,
and then look at the pywin docs to see how to call them.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20111226/f89a5e01/attachment.html>


More information about the Tutor mailing list