python을 사용한 RSA chiper text decode 하기.
1 2 3 4 5 6 7 8 9 10 | from Crypto.PublicKey import RSA from Crypto.Signature import PKCS1_v1_5 from Crypto.Hash import SHA from base64 import b64decode rsa_key = RSA.importKey(open('private.txt', "rb").read()) verifier = PKCS1_v1_5.new(rsa_key) raw_cipher_data = b64decode("chiper_text") phn = rsa_key.decrypt(raw_cipher_data) print phn | cs |
'# technic > - reversing' 카테고리의 다른 글
Reversing a gameboy binary(*.gb) (0) | 2018.09.28 |
---|---|
[Android] SDK 버전 패치. (2) | 2017.04.27 |
PE(Portable Executable) File Format (0) | 2017.02.28 |
windows java script shell 32bit 및 분석 (0) | 2016.11.30 |
IDA로 qemu를 이용해서 arm 디버깅하기 (0) | 2016.11.30 |