Bitcoin Forum
September 22, 2025, 05:23:35 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Bitcoin Discussion / Re: The Legend of Satoshi Nakamato, FINAL STEP PUBLISHED.... 4.87 BTC GRAND PRIZE! on: December 27, 2017, 05:32:26 PM
I would like to point out that via this Twitter interaction on Feb 7, 2017, she said some people are REALLY close to a solution https://twitter.com/coin_artist/status/829061915695525888
2  Economy / Micro Earnings / Re: Coin888 - Win $500 in free Bitcoins every hour! A fun different game on: December 31, 2015, 05:03:45 PM
Heyyyyy I am also getting 0 BTC after claiming, whats the dealio?
3  Bitcoin / Bitcoin Discussion / Re: Do you think Satoshi will ever spend his bitcoins? on: July 28, 2014, 09:01:15 PM
He has been spending his coins:

Example:
https://blockchain.info/block-index/15956
https://blockchain.info/address/1B9zyacRvnw5CL6NBd3HN484eDNsQqFNyV

These ended up going to Hal Finney:

https://blockchain.info/address/157i5gK7iN4bNAN39Ahuoiq6Tx5TaQukTE
4  Bitcoin / Bitcoin Discussion / Re: This message was too old and has been purged on: July 23, 2014, 07:18:50 PM

I will think about some ways and make them public here. I will probably have to drink some wine to be more creative.
The first idea would be:

If someone manages to get a mathematical closed formula for the x-value, he could just paste that thing into wolfram alpha and get k out of it right away.

Meaning:

You have two points (x,y) - one is called "other" and one is called "self"
The point addition of those points (x3,y3) can be calculated as follows.

Code:
 l = ( ( other.__y - self.__y ) *  inverse_mod( other.__x - self.__x, p ) ) % p
    x3 = ( l * l - self.__x - other.__x ) % p
    y3 = ( l * ( self.__x - x3 ) - self.__y ) % p

After this step, other.x is set to x3 and other.y is set to y3.

We have all we need (initial state):
Code:
p = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2FL (i guess)
other.x = 0x4641b45737ee8e11ae39899060160507d61a30928b0d3e37b6aede29b4ed807bL
other.y = 0xb61b706b81dbb5512c556dfd16815cced84e2fa12b5c8b6440057355f0df2a12L
self.x = 0x79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798L
self.y = 0x483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8L

All you gotta know is: How often do you have to perform the above "point addition" so that x3=self.x  Grin

The inversemod of this value (to the basis of p) is the k.


So does that mean how many times the point addition is run (lets say its count) so that x3 = self.x and do the inverse_mod(count, p) = k?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!