月度归档: 2025 年 2 月

4 篇文章

thumbnail
ROCA攻击
题目1 ! HGAME2025-week1-suprimeRSA from Crypto.Util.number import * import random from sympy import pr…
thumbnail
共素数RSA(Common_Prime-RSA)
情形 gcd(p−1,q−1)=g 分解的 $n$ 方法有四种: (1)修改Pollards'rho方法分解 $n$ (2)知道a,b的值分解 $n$ (3)知道g的值分解 $n$ (4)分解N-1 …
thumbnail
Stereotyped messages attack(刻板消息攻击)
攻击阐述 我们用b'\x00'替换消息中的x这样就有了(m+x)^e mod n=c m知道一部分 x是b'\x00\x00******'未知的 (e,n)是公钥,c是密文 问题变为如何找到x Cop…
thumbnail
威尔逊定理(筛法的运用)
题目 ! HGAME2025-sieve #sage from Crypto.Util.number import bytes_to_long from sympy import nextprime …