久しぶりに技術ブログを書くことにしました。最近知識の勉強をしていて、共有する価値のあるものをまとめていなかったので、今まで書くのをやめていました。最近の仕事は DingTalk の開発に関連しています。公式は 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( '4g5j64qlyl3zvetqxz5jiocdr586fn2zvjpa8zls3ij', '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
以上がPythonを使用したDingTalk暗号化/復号化ツールの作成の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。