Bitcoin Forum
June 17, 2024, 06:27:42 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Understanding Bitcoin addresses and private keys.  (Read 573 times)
calkob (OP)
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 520


View Profile
December 16, 2015, 12:35:34 AM
 #1

I have recently thought about bitcoin addresses and the private keys, and just cant get my head around how they are created and link together, would love if someone could break it down into laymans term.   Grin

My understanding of it is that a long string of Huh?? is passed through sha256 and creates an address (bitcoin address).  from the address you can not go backwards and find the original string of Huh? but if you have the private key which in some way is related to the string Huh? then you can access the address and the bitcoin stored there.  Huh .  I am probably way off but sure thats why i'm here, to learn


many thanks
Minecache
Legendary
*
Offline Offline

Activity: 2240
Merit: 1024


Vave.com - Crypto Casino


View Profile
December 16, 2015, 12:44:37 AM
 #2

There's a good video somewhere. Sorry can't remember what it was called. It's on YouTube.

██████
██
██
██
██
██
██
██
██
██
██
██████
██████            ██████
 █████            █████
  █████          █████
   █████        █████
 ████████      ████████
  ████████    ████████
      █████  █████   
    ████████████████
    ████████████████
        ████████     
         ██████       
          ████       
           ██         
AVE.COM | BRANDNEW CRYPTO
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀.. CASINO & BETTING PLATFORM
██████
██
██
██
██
██
██
██
██
██
██
██████
██████
██
██
██
██
██
██
██
██
██
██
██████
🏆🎁
██████
██
██
██
██
██
██
██
██
██
██
██████
██████
██
██
██
██
██
██
██
██
██
██
██████
████████████████████████████████   ████████████████   ██████
.
..PLAY NOW..
.
██████   ███████████████████   █████████████████████████████
██████
██
██
██
██
██
██
██
██
██
██
██████
franky1
Legendary
*
Online Online

Activity: 4256
Merit: 4523



View Profile
December 16, 2015, 12:53:32 AM
 #3

its not a straight private to public one step conversion..

there are other steps in the middle

this will help
http://gobittest.appspot.com/Address

remember google is your friend, so is the development section of this forum

I DO NOT TRADE OR ACT AS ESCROW ON THIS FORUM EVER.
Please do your own research & respect what is written here as both opinion & information gleaned from experience. many people replying with insults but no on-topic content substance, automatically are 'facepalmed' and yawned at
Bitcoinpro
Legendary
*
Offline Offline

Activity: 1344
Merit: 1000



View Profile
December 16, 2015, 01:02:14 AM
 #4

u can explain it in laymans terms almost anyway u want

though really u should go through the math process if

u want to understand it properly

WWW.FACEBOOK.COM

CRYPTOCURRENCY CENTRAL BANK

LTC: LP7bcFENVL9vdmUVea1M6FMyjSmUfsMVYf
calkob (OP)
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 520


View Profile
December 16, 2015, 12:53:15 PM
 #5

u can explain it in laymans terms almost anyway u want

though really u should go through the math process if

u want to understand it properly

i do want to understand it properly but a basic understanding of the principles first is a good beginner.  seriously you can ask nothing on here with out some know it all giving their opinion.
franky1
Legendary
*
Online Online

Activity: 4256
Merit: 4523



View Profile
December 16, 2015, 01:28:32 PM
 #6

u can explain it in laymans terms almost anyway u want

though really u should go through the math process if

u want to understand it properly

i do want to understand it properly but a basic understanding of the principles first is a good beginner.  seriously you can ask nothing on here with out some know it all giving their opinion.

getting into the specifics of ecdsa, ripemd, sha256, base58 are things that should be asked in the development and technical support section.
but i hope
http://gobittest.appspot.com/Address
helps you to atleast start seeing that its more than just sha256

I DO NOT TRADE OR ACT AS ESCROW ON THIS FORUM EVER.
Please do your own research & respect what is written here as both opinion & information gleaned from experience. many people replying with insults but no on-topic content substance, automatically are 'facepalmed' and yawned at
unent
Sr. Member
****
Offline Offline

Activity: 326
Merit: 250


View Profile
December 16, 2015, 01:54:41 PM
 #7

In extremely dumbed down terms, for each private key there is a matching public key, and both are a long string of letters and numbers.

A private key can encrypt something. A corresponding public key can decrypt something its private key has encrypted.

Also a public key can encrypt something, and its corresponding private key can decrypt something the public key has encrypted.

A public key can be mathematically calculated from a private key. An address is a public key that's been mangled by adding some information to it, then having some mathematical calculations done on it.

DannyHamilton
Legendary
*
Offline Offline

Activity: 3430
Merit: 4664



View Profile
December 16, 2015, 01:56:15 PM
 #8

My understanding of it is that a long string of Huh??

Actually, the private key, public key, and bitcoin address are all just a numbers. VERY large numbers.

There are many ways to represent numbers.  Computers typically use binary (base 2) which results in a "long string of 0's and 1's".  In the case of a private key, this binary "string" is 296 digits long. In the case of a bitcoin address, this binary "string" would be up to 200 digits long.

Humans generally use decimal (base 10) which results in a "long string of 0's, 1's, 2's, 3's, 4's, 5's, 6's, 7's, 8's, and 9's".  In the case of a private key, this decimal "string" would be 90 digits long. In the case of a bitcoin address, this decimal "string"  would be up to 61 digits long

To make it easier to exchange this important information, bitcoin uses base58 which results in a "long string of the numbers 1 through 9 (zero is not used) as well as the capital letters A through Z (but not O or I), and the lower case letters a through z (but not l). In the case of a private key, this base58 "string" is 51 digits long. In the case of a bitcoin address, this base58 "string" is up to 35 digits long.

is passed through sha256 and creates an address (bitcoin address).

First the ECDSA public key is calculated.  You can see the mathematical relationship between an ECDSA private key and an ECDSA public key here:
https://en.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm

Bitcoin uses the Secp256k1 curve for its ECDSA keys.  You can find the Secp256k1 parameters in section 2.4.1 here:
https://en.bitcoin.it/wiki/Secp256k1
(and here)
http://www.secg.org/sec2-v2.pdf

Then the public key is "passed through SHA256".
Then the result of that SHA256 is passed through RIPEMD160.
Then an 8 bit version number is placed in the front of the number.
Then a 32 bit checksum is calculated and appended to the end of the number.

from the address you can not go backwards and find the original string of Huh?

Correct.  Given a bitcoin address, it is impossible with current understanding of mathematics to figure out what SHA256 values could be "passed through RIPEMD160" to get that result.  Even if you could, then given a SHA256 value, it is impossible with current understanding of mathematics to figure out what ECDSA public keys could be "passed through SHA256" to get that SHA256 value.  Even if you could, then given an ECDSA public key, it is impossible with current understanding of mathematics to figure out what ECDSA private key would result in that particular public key.

but if you have the private key which in some way is related to the string Huh?

Yes, I think we have now established that relationship.

then you can access the address and the bitcoin stored there.  Huh .

Ok, now things start to get messy.  Bitcoins don't actually exist.  The concept of a bitcoin is just an abstraction that we humans use to make it easier to talk about the transfer of control over value.  For that matter, bitcoin addresses aren't used at the protocol level either.  Addresses are something that we humans use to interface with wallet software in order to tell the wallet software how we want it to encumber transaction outputs.

So, when we tell a wallet to "send to address 16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM", the wallet sees that version number "1" at the beginning and understands that what we actually want is a transaction output that is encumbered with a version 1 script using the (base 16) hash value of 00010966776006953D5567439E5E39F86A0D273BEE (represented here in base 16).  The wallet verifies the checksum to make sure you didn't make an error writing down the address or typing it in.  The wallet knows that all version 1 scripts are of the following format:
Code:
OP_DUP OP_HASH160 hash_value OP_EQUALVERIFY OP_CHECKSIG

This script encumbers the transaction output with a condition that must be met in a transaction input that attempts to spend this output. If the condition is not met, then the transaction attempting to spend this output will not be recognized as valid by any peers on the bitcoin network.

In the case of a version 1 script, the input must supply a public key that hashes to the hash value supplied AND must also supply a digital signature of the transaction that can be validated with that public key.  Since it is impossible with current understanding of mathematics to supply a valid digital signature unless you have the private key that is associated with the public key, providing that signature proves that the transaction creator is in possession of the private key.

Note that, given a signature, a public key, and some signed data, it is impossible with current understanding of mathematics to figure out what ECDSA private key was used to create that signature, but it is possible to figure out if the private key that was used is the private key that is associated with the given public key.


Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!