Show Posts
|
Pages: [1] 2 3 4 »
|
It synthesizes ok on Altera Cyclone 4, takes around 15k gates, but bit slow. At 50 Mhz clock, it takes ~18uS to add a point and hashing takes 3uS.
https://github.com/fpgaminer/fpgaminer-vanitygenhow to run .v # fpgaminer_vanitygen_top.v how to compile linex tell me You need to install Quartus Prime, then follow the 13 step guide. But keep in mind this is mostly useful to learn Verilog and play with your FPGA board. For practical purposes it is best to run VanitySearch on your CPU, it will be x10000 faster. i try to install Quartus Prime lot of error my linex
send me your fpgaminer-vanitygen compile file please # uplode your file this site https://www.transfernow.net/en send link please or gdrive , other link
|
|
|
It synthesizes ok on Altera Cyclone 4, takes around 15k gates, but bit slow. At 50 Mhz clock, it takes ~18uS to add a point and hashing takes 3uS.
https://github.com/fpgaminer/fpgaminer-vanitygenhow to run .v # fpgaminer_vanitygen_top.v how to compile linex tell me
|
|
|
import hashlib import base58
def hash160(hex_str): sha = hashlib.sha256() rip = hashlib.new('ripemd160') sha.update(hex_str) rip.update(sha.digest()) return rip.hexdigest() # .hexdigest() is hex ASCII
pub_keys = open('pubkey.json', 'r', encoding='utf-8') new_file = open('addresses.json', 'a', encoding='utf-8') compress_pubkey = False
for pub_key in pub_keys: pub_key = pub_key.replace('\n', '') if compress_pubkey: if (ord(bytearray.fromhex(pub_key[-2:])) % 2 == 0): pubkey_compressed = '02' else: pubkey_compressed = '03' pubkey_compressed += pub_key[2:66] hex_str = bytearray.fromhex(pubkey_compressed) else: hex_str = bytearray.fromhex(pub_key)
key_hash = '00' + hash160(hex_str)
sha = hashlib.sha256() sha.update(bytearray.fromhex(key_hash)) checksum = sha.digest() sha = hashlib.sha256() sha.update(checksum) checksum = sha.hexdigest()[0:8]
new_file.write("" + (base58.b58encode(bytes(bytearray.fromhex(key_hash + checksum)))).decode('utf-8'))
new_file.write((base58.b58encode(bytes(bytearray.fromhex(key_hash + checksum)))).decode('utf-8') + "\n")
pub_keys.close() new_file.close()
this code python public 2 addresses any easy sage method please... public 2 addresses
|
|
|
public key to Address convert compressed, uncompressed sagemath code please
Here is another script, but I really doubt it is going to be useful to you: yes,but i need output Address from public key like this: Uncompressed: 1EBH5s8KswNw3cSv4yF52M8JhkxyMV74eg compressed: 14h2grbBy9uXrUgAhr1znnnQy8e6zTzDs4 update please..
|
|
|
@ecdsa123 @PowerGlove @ETFbitcoin @witcher_sense
public x to Address convert compressed, uncompressed sagemath code please
Enter one point x a34b99f22c790c4e36b2b3c2c35a36db06226e41c692fc82b8b56ac1c540c5bd convert 02 and 03 >> uncompressed Address,compressed Address
02 a34b99f22c790c4e36b2b3c2c35a36db06226e41c692fc82b8b56ac1c540c5bd >> 1KAqCkyrNu5PmK6bwmg5h1VN8ags4iXxm4, 1K5kLbqNncT2oGbj8KNwkYi49es9CeEtnp 03 a34b99f22c790c4e36b2b3c2c35a36db06226e41c692fc82b8b56ac1c540c5bd >> 1HZwkjkeaoZfTSaJxDw6aKkxp45agDiEzN, 1F3sAm6ZtwLAUnj7d38pGFxtP3RVEvtsbV
any one help me sagemath
|
|
|
The newbie who created the original version of this code which you are using a copy of, gave up trying to steal other people's money since they never found a reused r a very long time ago. This is why the code was never updated to include the SegWit transaction related stuff!! It is unlikely for anyone else to want to waste their time on this. I need vulnerable reused K value any one paste here.. i am found some K value online 6d8827ba2b40a8498940988a989ce4421c44fed2c8305a1e199277b8b1b51c5b ..... ... ...... i need more.. K value from some one solved addresses i need more.. K value from some one solved addresses
i need more.. K value from some one solved addresses send your k value here.. please
|
|
|
Just wondering if this has any particular meaning when k=s/z .. R = b55eb357d551df1ea45560dc28ece4480ddcd107556eae7013efb626807844b5 S = efe14a1269ce270b12f3b79d28cfb99dfadb78e0843e9a595e9d1b0ed9bbcc72 Z = 70f6de768e8171c6032de22b261b956c451b7e18455391b1974f9e3a0db3288e K = 6ec4814e7f2a2443682a4ab10414ceb588450c78edacd8d88e8b33a449549141 255 bitsZ/(s-r) 9dee90db0dee84e616163205eacf40008e385268c7ba7e2728ca48ecf0cfdebf Z/S= 6ec4814e7f2a2443682a4ab10414ceb588450c78edacd8d88e8b33a449549141R/S= a720acf15893484e6e4f0c672c2c021beb500f0909e58691efd78a0c763e781a RS-ZS= 385c2ba2d969240b0624c1b628173366630b02901c38adb9614c56682ce9e6d9 ------------------------------------------------------------------------------ etc etc etc.... ------------------------------------------------------------------------------ Your Random K Value *G != R K = 6ec4814e7f2a2443682a4ab10414ceb588450c78edacd8d88e8b33a449549141 255 bits Your code share please..
|
|
|
1st question: rsz decode problemI am run python getz_input.py some -txid not decoding rsz, why? https://github.com/iceland2k14/rsz/blob/main/getz_input.pyTry 1https://www.blockchain.com/explorer/addresses/btc/1HXSnvNGK8oYQCyLDkpHNZ2sWPvFsYQcFUF:\btc>python getz_input.py -txid 26dcc5526ff2ab9decfa967ed21dbd9fc16f4a3690d40592f9073ab1557799d0
Starting Program... Traceback (most recent call last): File "F:\btc\getz_input.py", line 114, in <module> m = parseTx(rawtx) File "F:\btc\getz_input.py", line 67, in parseTx r, s, pub = split_sig_pieces(script) File "F:\btc\getz_input.py", line 38, in split_sig_pieces sigLen = int(script[2:4], 16) ValueError: invalid literal for int() with base 16: ''
Try bc1https://www.blockchain.com/explorer/addresses/btc/bc1qupj5h2zcyfsfef7ywf8ea430cn8jz3dm66tzq7F:\btc>python getz_input.py -txid 7d4036dbc43e3b785cabb22413b67ee6c8a7375ec316c226c29eb10915647988
Starting Program... UnSupported Tx Input. Presence of Witness Data
Try 3https://blockchain.com/explorer/addresses/btc/3GmSinMx7BHkAHWHo5BMUNTcX6ZA2JunBaF:\btc>python getz_input.py -txid 454c90738880a6635446805303c89871f0bb7b362d1ff9ff4e8646ff4e24ef49
Starting Program... UnSupported Tx Input. Presence of Witness Data
2nd question: R-ScanerR-Scaner 2023 not working update code please not working >> https://github.com/stateactor/Bitcoin-Key-Compression-Tool/blob/master/R-Scaner.py
|
|
|
puzzle 66 where no pubkey is known?
puzzle 66 Address 13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so compressed or Uncompressed ??
|
|
|
It means no one can able to calculate and find the private key of any public BTC addresses have you tried to search it through Google? You should find something like this "it is impossible to derive the private key from the public key".
How btc move without privatekey ? https://www.blockchain.com/explorer/addresses/btc/1B5USZh6fc2hvw2yW9YaVF75sJLcLQ4wCt
Who know the privatekey ?
|
|
|
You want the private key of the addresses that are not yours? If this is how bitcoin is, everyone will be spending everyone's coins and which means bitcoin is not safe, but bitcoin is safe. You can not generate private key from public key or address.
|
|
|
@LoyceV (OP) Hi, I need Bitcoin Public Key Database with balance 2009 to 2022 Please upload Bitcoin Public Key Database with balance your site http://addresses.loyce.club/Example Publickeys.txt 02ceb6cbbcdbdf5ef7150682150f4ce2c6f4807b349827dcdbdd1f2efa885a2630 02ceb6cbbcdbdf5ef7150682150f4ce2c6f4807b349827dcdbdd1f2efa885a2630 02ceb6cbbcdbdf5ef7150682150f4ce2c6f4807b349827dcdbdd1f2efa885a2630
Bitcoin Public Key Database 2009-2022 any gdrive github other site send link please i need 1M < 10M public keys .txt formet any one send me link please OrHow to scrape bitcoin public key 2009 to 2022 , any code ineed 1M<10M Public keys
|
|
|
@LoyceV (OP) Hi, I need Bitcoin Public Key Database with balance Please upload Bitcoin Public Key Database with balance your site http://addresses.loyce.club/Example Publickeys.txt 02ceb6cbbcdbdf5ef7150682150f4ce2c6f4807b349827dcdbdd1f2efa885a2630 02ceb6cbbcdbdf5ef7150682150f4ce2c6f4807b349827dcdbdd1f2efa885a2630 02ceb6cbbcdbdf5ef7150682150f4ce2c6f4807b349827dcdbdd1f2efa885a2630
Bitcoin Public Key Database please any gdrive github other site send link i need 1M < 10M public keys .txt formet
|
|
|
div is so hard P5= P2*modinv(0x2,n) any easy to div like this P5 = P2/0x2
|
|
|
@ETFbitcoin @witcher_sense @PowerGlove Example tow Point px1 = 0x79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798 py1 = 0x483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8
px2 = 0xc6047f9441ed7d6d3045406e95c07cd85c778e4b8cef3ca7abac09b95c709ee5 py2 = 0x1ae168fea63dc339a3c58419466ceaeef7f632653266d0e1236431a950cfe52a
how to, Two point [ add , sub , div , mul ] in sagemath please i need sage code
|
|
|
As alternative, you could run the code on online editor such as https://sagecell.sagemath.org/. I tried both script on that website[1-2] and it runs without any problem. If you want to run the code on your device, you could install SageCell server[3] on your own device. I'll try to install it on my Debian VM and share the result later. Update: stuck with various problem related with dependency, so i give up for time being. [3] https://github.com/sagemath/sagecellinstall my pc pip install sagecellNameError: name 'fabric' is not definednext i am install pip install fabricagain show NameError: name 'fabric' is not definedhow to install sagecell windows 10 without error please send your sagecell server windows git code or gdrive
|
|
|
i am run this 2 script sage error message show i need alternative code sage in python If you're asking what you have to do to those scripts in order to get them to run correctly outside of the sage shell, then here you go: Script1.pyScript2.pyThese run fine on my system, like this: If that doesn't work for you, then you might have to run them like this, instead: Yes,iam alredy try This error show /opt/sagemath-9.3/local/lib/python3.7/site-packages/psutil/_pscygwin.py:311: DeprecationWarning: invalid escape sequence \d search = re.compile('cpu\d') /opt/sagemath-9.3/local/lib/python3.7/site-packages/psutil/_pscygwin.py:876: DeprecationWarning: invalid escape sequence \d def uids(self, _uids_re=re.compile(b'Uid:\t(\d+)')): /opt/sagemath-9.3/local/lib/python3.7/site-packages/psutil/_pscygwin.py:887: DeprecationWarning: invalid escape sequence \d def gids(self, _gids_re=re.compile(b'Gid:\t(\d+)')):
NameError: name 'EllipticCurve' is not defined sage
|
|
|
|