Crypto
文章平均质量分 84
iH0lmes
这个作者很懒,什么都没留下…
展开
-
DAS八月挑战赛
title: DAS八月挑战赛——Crypto easymath task assert(len(open('flag.txt', 'rb').read()) < 50) assert(str(int.from_bytes(open('flag.txt', 'rb').read(), byteorder='big') << 10000).endswith('186279088456316058236588853086969039766754662871079503154430437815.原创 2021-09-27 23:15:08 · 188 阅读 · 0 评论 -
Buu Crypto
Buu RSA做题记录 RSA 题目 在一次RSA密钥对生成中,假设p=473398607161,q=4511491,e=17 求解出d作为flga提交 解 import gmpy2 p = 473398607161 q = 4511491 e = 17 phi = (p-1) * (q-1) d = gmpy2.invert(e,phi) print(d) ''' 125631357777427553 ''' rsarsa 题目 Math is cool! Use the RSA algorit.原创 2021-07-31 15:09:09 · 707 阅读 · 0 评论