PyWxDump/tests/test_decrypt.py
2024-08-19 10:59:52 +08:00

15 lines
520 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-#
# -------------------------------------------------------------------------------
# Name: test_decrypt.py
# Description:
# Author: xaoyaoo
# Date: 2023/11/15
# -------------------------------------------------------------------------------
from pywxdump import batch_decrypt
key = "xxxxxx" # 解密密钥
db_path = "xxxxxx" # 数据库路径文件or文件list
out_path = "xxxxxx" # 输出路径(目录)
result = batch_decrypt(key, db_path, out_path, True)