1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-22 16:18:11 +00:00

Edited ch04_keys.adoc with Atlas code editor

This commit is contained in:
clenser 2023-10-16 23:31:41 +00:00
parent 4f324a2d85
commit a477a3f8b4

View File

@ -28,7 +28,7 @@ the addresses used by modern Bitcoin software.
=== Public Key Cryptography
Public key
Public ((("public key cryptography", id="pub-key")))key
cryptography was invented in the 1970s and is a mathematical foundation
for modern computer and information security.
@ -66,7 +66,7 @@ pairs, each consisting of a private key and a public key. The private
key (k) is a number, usually derived from a number picked at random.
From the private key, we
use elliptic curve multiplication, a one-way cryptographic function, to
generate a public key (K).
generate a public((("public key cryptography", startref="pub-key"))) key (K).
.Why Use Asymmetric Cryptography (Public/Private Keys)?
****