오랜만에 기술 블로그를 작성하게 되었습니다. 최근 지식을 공부하다가 공유할 만한 내용을 정리하지 못해 지금까지 글쓰기를 중단했습니다. 최근 작업은 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!