eric.maxi

Member
35
Posts
232
Reputation
Aug 11, 2016
Joined
Recent posts
  • https://link.springer.com/content/pdf/10.1007/s001450010010.pdf https://www.iacr.org/archive/pkc2010/60560372/60560372.pdf https://arxiv.org/pdf/1501.07019.pdf…

  • Steps: 1. Git clone or download this to any Folder in your pc. https://github.com/iceland2k14/secp256k1 2. cd to same folder and then run python commands or scripts you desire. That will work. The reason for failure is…

  • Why you said it. The library has already the wrapper defined for this purpose. You just need 2 lines of code in python3 for your purpose, nothing else. If you want to know the inside implementation of how it is done,…

  • I think you are simply looking for something like this. Result : If the String is bigger you will get a list of address output. Otherwise it will be just 1 address. Example Is that what you want ?

  • Are these cases from an existing Tx on blockchain or it's from mathematical Tx ?

  • Yes there are several ways. 1. When same K is used 2 times either in same or different Transaction, its trivial to calculate PVK. Its already extensively exploited. 2. When K values are closeby so that difference can be…

  • K values used in Signature are kept secret as privatkeys. To find the relationship between 2 nonces the only possibility is to try bruteforce. I had a sript in my rsz repo which extracts all Tx for an address and tries…

  • Thank you, but I did that deliberately. I was pointed to this thread from https://bitcointalk.org/index.php?topic=5418942.0 entitled What is a good reference for a getblocktemplate based solo miner. Hence I was…

  • I tried to repeat the procedure, but I ran into some issues. Note that MYUSER, MYPASS and MYADDR are replaced by their actual values when running the below commands I'm able to access the node using So it seem to be…

  • secp256k1 curve is With the help of cuberoot of Unity, we can say that each value of Y there will be 3 values of X. (Endomorphism Points) In a similar way For each X there will be 2 values of Y. (symmetry Points) The…

  • Backdoor and ECDSAMay 16, 2024

    In a similar way I have a simulation script in python https://github.com/iceland2k14/rsz/blob/main/LLL_nonce_leakage.py where some Random signatures are prepared with Leakage in 128 bits and then assuming they are are…

  • For simple cases, something like this

  • Assume it's a placeholder for POC purpose. https://github.com/iceland2k14/btc_words/blob/main/p2sh_brute.py

  • As you have guessed, i am sure most of these addresses must have been made through programming errors and testing purpose intentionally. My take from this exercise is that script evaluation is keeping an extra layer of…

  • I was experimenting purely from iterator side maths, as in the case of p2sh address the hash of the redeemscript is being matched with the script hash, so i started to check collision instead of the usual Hash(…

  • I've come across several p2sh addresses that have some balance, but they look like they're built with these strange, short RedeemScripts. How do you actually make transactions from these addresses? Seems like none of…

  • I've been keeping an eye on RWA tokenization lately and honestly, it seems like one of the strongest trends in crypto right now. We've seen fads like NFTs, memecoins, and GameFi come and go, but the RWA idea might…

  • This type of approach are often seen as an attempt to relate between the public key and (even/odd) privatekey in last few years. You can make an experiment. Generate from 1 to 1billion all privatekeys, their…

  • For my own testing i use in python ..... The output is

  • Simple Math is, Please Never ever mix the Integer modulo calculation with fraction, decimal, float, double or whatever 20 precision. They will never go along. Treat them as modulo Maths only. log2 is just giving you the…