发布网友 发布时间:2022-04-23 08:50
共3个回答
懂视网 时间:2022-05-10 13:20
又是很久没有写技术博客了,盖因最近都在学习知识,也没有总结出什么值得分享的内容,所以一直停笔至今。最近的工作和钉钉的开发打上了交到,官方并没有提供任何Python的SDK,于是只能全部自己写。现在我将其中实现起来相对费时间的“加密/解密/签名”部分分享出来,希望能帮助到一些人。
加密/解密的具体机制,可以参考 官方文档 。
在你的项目中安装这个扩展,可以使用:
pip install dingtalk_crypto
安装。
使用方法,可以参考下面的测试代码:
# -*- coding: utf-8 -*- import json from dingtalk_crypto import DingTalkCrypto # 这个是钉钉官方给的测试数据 # @see https://open-doc.dingtalk.com/doc2/detail.htm?treeId=175&articleId=104945&docType=1#s14 encrypt_text = '1a3NBxmCFwkCJvfoQ7WhJHB+iX3qHPsc9JbaDznE1i03peOk1LaOQoRz3+nlyGNhwmwJ3vDMG' '+OzrHMeiZI7gTRWVdUBmfxjZ8Ej23JVYa9VrYeJ5as7XM/ZpulX8NEQis44w53h1qAgnC3PRzM7Zc' '/D6Ibr0rgUathB6zRHP8PYrfgnNOS9PhSBdHlegK+AGGanfwjXuQ9+0pZcy0w9lQ==' crypto = DingTalkCrypto( '4g5jqlyl3zvetqxz5jiocdr586fn2zvjpa8zls3ij', '123456', 'suite4xxxxxxxxxxxxxxx' ) signature = '5a65ceeef9aab2d149439f82dc191dd6c5cbe2c0' timestamp = '1445827045067' nonce = 'nEXhMP4r' class TestCrypto: def test_decrypt(self): randstr, length, msg, suite_key = crypto.decrypt(encrypt_text) msg = json.loads(msg) assert msg['EventType'] == 'check_create_suite_url' assert msg['Random'] == 'LPIdSnlF' assert suite_key == 'suite4xxxxxxxxxxxxxxx' def test_encode(self): encrypt_msg = crypto.encrypt('hello world') randstr, length, msg, suite_key = crypto.decrypt(encrypt_msg) assert msg == 'hello world' def test_check_signature(self): assert crypto.check_signature(encrypt_text, timestamp, nonce, signature) def test_sign(self): msg = crypto.encrypt('hello world') actual_sig, actual_time, actual_nonce = crypto.sign(msg) assert True
最后,贴出项目的 源码地址 ,希望能一些交流。
热心网友 时间:2022-05-10 10:28
对 Python 加密时可能会有两种形式,一种是对Python转成的exe进行保护,另一种是直接对.py或者.pyc文件进行保护,下面将列举两种形式的保护流程。
1、 对 python转exe加壳
下载最新版Virbox Protector加壳工具,使用加壳工具直接对demo.exe进行加壳操作
2、对.py/.pyc加密
第一步,使用加壳工具对 python 安装目录下的 python.exe 进行加壳,将 python.exe 拖入到加壳工具 VirboxProtector 中,配置后直接点击加壳。
第二步,对.py/.pyc 进行加密,使用 DSProtector 对.py/.pyc 进行保护。
热心网友 时间:2022-05-10 11:46
你这题目最起码要知道key才能解密出来plaintext,不然有很多种组合。