mirror of
https://github.com/monero-project/research-lab.git
synced 2024-12-23 03:59:40 +00:00
10 lines
197 B
Python
10 lines
197 B
Python
|
import MiniNero
|
||
|
def getHForCT():
|
||
|
A = MiniNero.publicFromInt(123456)
|
||
|
return MiniNero.hashToPoint_ct(A)
|
||
|
|
||
|
H = getHForCT()
|
||
|
for i in range(0, 2**14):
|
||
|
print(MiniNero.scalarmultKeyInt(H, i))
|
||
|
|