You could encrypt it with AES-128 in python:
from Cryptodome.Cipher import AES import codecs seed = b'abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon' encrypted = AES.new(b'fuckgovernments!',A.MODE_EAX,nonce=b'yes,really').encrypt(seed) print(codecs.encode(encrypted, 'hex'))
and post here:
a1a28c63653165e11ab2ae306a62a5133734b025c42e5ef81576b6d6bde74ac65c2a3ccdef8cdba5c1a90c287d1380d26fc294b2b9f09ccb64b50bd4bbd651d941c7eeb42049958870c8e09720db2205d6e777aab69c3b6ec92750e89961d3
On the other side you do the same except .decrypt(encrypted) instead of .encrypt(seed).
loool. Love me some short adhoc Python scripts!
reply