在Python中使用DPAPI?

2024-05-16 10:26:38 发布

您现在位置:Python中文网/ 问答频道 /正文

有没有办法用Python在Windows XP上使用DPAPI(数据保护应用程序编程接口)?

如果有一个模块可以做到的话,我宁愿使用现有的模块。不幸的是,我找不到谷歌或堆栈溢出的方法。

编辑:我使用了“dF”所指的示例代码,并将其调整为一个独立的库,该库可以在用户模式下简单地使用DPAPI进行加密和解密。只需调用dpapi.cryptData(text_to_encrypt)返回加密字符串,或者调用反向解密数据(encrypted_data_string)返回纯文本。这是图书馆:

# DPAPI access library
# This file uses code originally created by Crusher Joe:
# http://article.gmane.org/gmane.comp.python.ctypes/420
#

from ctypes import *
from ctypes.wintypes import DWORD

LocalFree = windll.kernel32.LocalFree
memcpy = cdll.msvcrt.memcpy
CryptProtectData = windll.crypt32.CryptProtectData
CryptUnprotectData = windll.crypt32.CryptUnprotectData
CRYPTPROTECT_UI_FORBIDDEN = 0x01
extraEntropy = "cl;ad13 \0al;323kjd #(adl;k$#ajsd"

class DATA_BLOB(Structure):
    _fields_ = [("cbData", DWORD), ("pbData", POINTER(c_char))]

def getData(blobOut):
    cbData = int(blobOut.cbData)
    pbData = blobOut.pbData
    buffer = c_buffer(cbData)
    memcpy(buffer, pbData, cbData)
    LocalFree(pbData);
    return buffer.raw

def Win32CryptProtectData(plainText, entropy):
    bufferIn = c_buffer(plainText, len(plainText))
    blobIn = DATA_BLOB(len(plainText), bufferIn)
    bufferEntropy = c_buffer(entropy, len(entropy))
    blobEntropy = DATA_BLOB(len(entropy), bufferEntropy)
    blobOut = DATA_BLOB()

    if CryptProtectData(byref(blobIn), u"python_data", byref(blobEntropy),
                       None, None, CRYPTPROTECT_UI_FORBIDDEN, byref(blobOut)):
        return getData(blobOut)
    else:
        return ""

def Win32CryptUnprotectData(cipherText, entropy):
    bufferIn = c_buffer(cipherText, len(cipherText))
    blobIn = DATA_BLOB(len(cipherText), bufferIn)
    bufferEntropy = c_buffer(entropy, len(entropy))
    blobEntropy = DATA_BLOB(len(entropy), bufferEntropy)
    blobOut = DATA_BLOB()
    if CryptUnprotectData(byref(blobIn), None, byref(blobEntropy), None, None,
                              CRYPTPROTECT_UI_FORBIDDEN, byref(blobOut)):
        return getData(blobOut)
    else:
        return ""

def cryptData(text):
    return Win32CryptProtectData(text, extraEntropy)

def decryptData(cipher_text):
    return Win32CryptUnprotectData(cipher_text, extraEntropy)

Tags: textnonedatalenreturndefbufferblob
3条回答

最简单的方法是使用Iron Python

另外,pywin32在win32crypt模块中实现CryptProtectData和CryptUnprotectData。

我一直在通过ctypes使用CryptProtectDataCryptUnprotectData,代码来自

http://article.gmane.org/gmane.comp.python.ctypes/420

而且一直运作良好。

相关问题 更多 >