摘要: 自搭了一个好看、实用的博客,欢迎一起讨论、学习,一起进步。W'Blog - Wbuildings 的自勉小屋 111 阅读全文
posted @ 2024-02-26 03:39 Wbuildings 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 终端一键换源: pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple kali 运行python脚本: sage -python test.py 我一般把sage脚本也写成 .py 文件了,然后运行,就报错 阅读全文
posted @ 2023-09-23 14:47 Wbuildings 阅读(186) 评论(1) 推荐(0) 编辑
摘要: 1,EzRSA 题目代码: from Crypto.Util.number import * from secret import flag m = bytes_to_long(flag) assert m.bit_length()<200 p = getPrime(512) q = getPrim 阅读全文
posted @ 2023-09-03 20:43 Wbuildings 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 离散对数(持续更新中) 1,DH&DLP 题目源码: from Crypto.Util.number import * import hashlib class D_H(): def __init__(self): self.a = getPrime(128) self.b = getPrime(128) self.p = 阅读全文
posted @ 2023-07-24 10:08 Wbuildings 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 古典密码积累(施工中) 一,古典密码对照表 1,音乐加密 2,仓颉编码解码 仓颉编码_仓颉编码查询_40工具查询网 (4000879990.xin) 3,Gronsfeld 羊城杯的misc里用到了,Gronsfeld 是维吉尼亚的变种 Gronsfeld Cipher (online tool) | Boxentriq 阅读全文
posted @ 2023-07-12 16:18 Wbuildings 阅读(97) 评论(0) 推荐(0) 编辑
摘要: RSA刷题系列(施工中) 1,共享素数 1)[闽盾杯 2021]decode 题目: n1: 15228664629164509105936278301396170708905691970126305196584505186788860519598413718493859625462561931380632032431490 阅读全文
posted @ 2023-07-12 14:54 Wbuildings 阅读(482) 评论(2) 推荐(0) 编辑
摘要: 算法(施工中) 二,逆元 如果两个正整数a和n互质,那么⼀定可以找到整数b,使得 ab-1 被n整 除,或者说ab被n除的余数是1。这时,b就叫做a的"模反元素"。(即逆元) ed ≡ 1 (mod phi_n) d = libnum.invmod(e,phi_n) 拓展欧几里得算法也可以求逆元 在共模攻击里用到了 阅读全文
posted @ 2023-07-12 10:49 Wbuildings 阅读(74) 评论(0) 推荐(0) 编辑