-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhex.py
More file actions
15 lines (12 loc) · 2.92 KB
/
hex.py
File metadata and controls
15 lines (12 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
num1 = 683656519776831450494080974160453503000280514874681801604031893688580503981666686159071357037675293259473042206279743356874251005848716329352135175867750961607416908107487846111282909407427883479379196273150123125892207614612822398465158608972691307625676981945713332076478851671806011577452416219650904708979920308530722648490539254707483634350123521196260286075899765457563962906790165179191683854792126698835532556230834571544919171486745594348240909994840431401819098465623727083133534147453770849722735190623595185346671913250844539324472976650315343174702604232500368937219877051263513240346905571574838825426562575292028518977995543289476587205407430339710188027109990243043069750579065958155618604951085970646915702878107578623722678681268835583539007591030567160130521609356392780786068905714976370049850076109759554853518275340855637828693981716002889155508845458280021119734791995282751633028873817192591292872081
num2 = 5169639040213775447790776675039102355191991972844975538740122111281998543187344780560207215602980278988893570800255092059787883605896141549772075848404794967240389397319964565713129963992591599803622695887047764413358181081424327925245784104110837750908105984793102937630807983731262482101069580299034269891921700631437042784551219232725518674554818613629987859077385545439410913694949064097492842723420361069693871808328505919511577279720599769189479450504350670573466952046179856808618358466720718742949391470081058982777153824212010464203640523207991182112556324842518865255428272980945950660397319717866360366249364876910173696155504972501502371958972463261076714283872771257053346987140524794540077746936671838372087364818654597338521204685553714976387072276517933242323215858403512662033449681796078496838945868820031438932842262971681922436668654561413877649242182715411290134529766844003010948780606088897855196284119
num3 = 3416490705484725682996608494710826054739260891219121631063370298323978857071727350587660289219065184581169584420096869687711155946788145428989238167082195607872261931820181579183808618426182580349550966991969478302382760343885840132165046551296599320117648540824706636238324981578065183623104427986427119116866517954414596595855748384363721698192704060889740492588699762549584839516466590321753921803219692820755356785486784653853586748656582124012405815236448722091358003761493063512758661612953953693071648467034250915700460107407410664204796713164474885619385415699423688184703303106186005222179708784768509769375460993998602247897858968367607113942307609160795651597908216385885573315225250095220121393603839854031809923343701317776527199022657110328141998697925011579012060013191411762655366006333557110485455159260303266294766264926265290468677333767925898482870084336253385422633162299765272988183434079854339244715512
num4 = 245457011077297393694929008287736062569
hex1 = hex(num1)
hex2 = hex(num2)
hex3 = hex(num3)
hex4 = hex(num4)
print("A1",hex1)
print("modulus",hex2)
print("witness",hex3)
print("x",hex4)