Skip to content

Commit 82f4269

Browse files
committedAug 29, 2018
add challenge
1 parent dfc18ae commit 82f4269

File tree

33 files changed

+869
-143
lines changed

33 files changed

+869
-143
lines changed
 
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env python
2+
3+
import gmpy
4+
from Crypto.Util.number import *
5+
from secret import x, y, flag
6+
7+
assert gmpy.is_prime(y)**2016 + gmpy.is_prime(x + 1)**2017 + (
8+
(x**2 - 1)**2 % (2 * x * y - 1) + 2
9+
)**2018 == 30097557298197417800049182668952226601954645169633891463401117760245367082644152355564014438095421962150109895432272944128252155287648477680131934943095113263121691874508742328500559321036238322775864636883202538152031804102118831278605474474352011895348919417742923873371980983336517409056008233804190890418285814476821890492630167665485823056526646050928460488168341721716361299816947722947465808004305806687049198633489997459201469227952552870291934919760829984421958853221330987033580524592596407485826446284220272614663464267135596497185086055090126893989371261962903295313304735911034185619611156742146
10+
11+
p = gmpy.next_prime(x**3 + y**3)
12+
q = gmpy.next_prime(x**2 * y + y**2 * x)
13+
n = p * q
14+
phi = (p - 1) * (q - 1)
15+
d = gmpy.invert(0x10001, phi)
16+
enc = pow(bytes_to_long(flag), 0x10001, n)
17+
print 'n =', n
18+
print 'enc =', enc
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import gmpy2
2+
tmp = 30097557298197417800049182668952226601954645169633891463401117760245367082644152355564014438095421962150109895432272944128252155287648477680131934943095113263121691874508742328500559321036238322775864636883202538152031804102118831278605474474352011895348919417742923873371980983336517409056008233804190890418285814476821890492630167665485823056526646050928460488168341721716361299816947722947465808004305806687049198633489997459201469227952552870291934919760829984421958853221330987033580524592596407485826446284220272614663464267135596497185086055090126893989371261962903295313304735911034185619611156742146
3+
4+
print gmpy2.iroot(tmp, 2018)
5+
print gmpy2.iroot(tmp - 1, 2018)
6+
7+
print gmpy2.iroot(tmp - 2, 2018)
8+
9+
n = 260272753019642842691231717156206014402348296256668058656902033827190888150939144319270903947159599144884859205368557385941127216969379550487700198771513118894125094678559478972591331182960004648132846372455712958337042783083099376871113795475285658106058675217077803768944674144803250791799957440111855021945690877200606577646234107957498370758707097662736662439460472126493593605957225541979181422479704018055731221681621886820626215670393536343427267329350730257979042198593215747542270975288047196483958369426727778580292311145109908665004662296440533724591193527886702374790526322791818523938910660223971454070731594803459613066617828657725704376475527288174777197739360634209448477565044519733575375490101670974499385760735451471034271880800081246883157088501597655371430353965493264345172541221268942926210055390568364981514774743693528424196241142665685211916330254113610598390909248626686397970038848966187547231199741
10+
11+
y = 191904757378974300059526915134037747982760255307942501070454569331878491189601823952845623286161325306079772871025816081849039036850918375408172174102720702781463514549851887084613000000L
12+
y = gmpy2.next_prime(y)
13+
14+
enc = 73933313646416156737449236838459526871566017180178176765840447023088664788672323530940171469589918772272559607026808711216932468486201094786991159096267208480969757088208089800600731106685561375522764783335332964711981392251568543122418192877756299395774738176188452197889668610818741062203831272066261677731889616150485770623945568369493256759711422067551058418926344060504112146971937651406886327429318390247733970549845424064244469193626197360072341969574784310397213033860597822010667926563087858301337091484951760613299203587677078666096526093414014637559237148644939541419075479462431789925219269815364529507771308181435591670281081465439913711912925412078002618729159141400730636976744132429329651487292506365655834202469178066850282850374067239317928012461993443785247524500680257923687511378073703423047348824611101206633407452837948194591695712958510124436821151767823443033286425729473563002691262316964646014201612
15+
16+
end = gmpy2.iroot(n / 54, 6)[0]
17+
beg = end - 2000000
18+
19+
mid = 1
20+
while beg < end:
21+
mid = (beg + end) / 2
22+
if gmpy2.is_prime(mid) != 1:
23+
mid = gmpy2.next_prime(mid)
24+
p = gmpy2.next_prime(9 * mid**3)
25+
q = gmpy2.next_prime(6 * mid**3)
26+
n1 = p * q
27+
if n1 == n:
28+
print p, q
29+
phin = (p - 1) * (q - 1)
30+
d = gmpy2.invert(0x10001, phin)
31+
m = gmpy2.powmod(enc, d, n)
32+
print hex(m)[2:].strip('L').decode('hex')
33+
print 'ok'
34+
exit(0)
35+
elif n1 < n:
36+
beg = mid
37+
else:
38+
end = mid
39+
print beg, end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
n = 260272753019642842691231717156206014402348296256668058656902033827190888150939144319270903947159599144884859205368557385941127216969379550487700198771513118894125094678559478972591331182960004648132846372455712958337042783083099376871113795475285658106058675217077803768944674144803250791799957440111855021945690877200606577646234107957498370758707097662736662439460472126493593605957225541979181422479704018055731221681621886820626215670393536343427267329350730257979042198593215747542270975288047196483958369426727778580292311145109908665004662296440533724591193527886702374790526322791818523938910660223971454070731594803459613066617828657725704376475527288174777197739360634209448477565044519733575375490101670974499385760735451471034271880800081246883157088501597655371430353965493264345172541221268942926210055390568364981514774743693528424196241142665685211916330254113610598390909248626686397970038848966187547231199741
2+
enc = 73933313646416156737449236838459526871566017180178176765840447023088664788672323530940171469589918772272559607026808711216932468486201094786991159096267208480969757088208089800600731106685561375522764783335332964711981392251568543122418192877756299395774738176188452197889668610818741062203831272066261677731889616150485770623945568369493256759711422067551058418926344060504112146971937651406886327429318390247733970549845424064244469193626197360072341969574784310397213033860597822010667926563087858301337091484951760613299203587677078666096526093414014637559237148644939541419075479462431789925219269815364529507771308181435591670281081465439913711912925412078002618729159141400730636976744132429329651487292506365655834202469178066850282850374067239317928012461993443785247524500680257923687511378073703423047348824611101206633407452837948194591695712958510124436821151767823443033286425729473563002691262316964646014201612

‎crypto/asymmetric/rsa/rsa_theory/2018-国家安全周第一场-puremath/exp.py

-19
This file was deleted.

‎crypto/asymmetric/rsa/rsa_theory/2018_codegate_rsababy/RSAbaby.py

-79
This file was deleted.

‎crypto/asymmetric/rsa/rsa_theory/2018_codegate_rsababy/Result.txt

-7
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.