mirror of
https://github.com/monero-project/research-lab.git
synced 2025-01-03 17:40:11 +00:00
9 lines
197 B
Python
9 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))
|
|
|