From 6775ade505c892885bdc4a08d9932059116c8841 Mon Sep 17 00:00:00 2001 From: Claudio Puggioni <76516704+ClaudioPuggioni@users.noreply.github.com> Date: Mon, 22 Apr 2024 06:38:21 +0700 Subject: [PATCH] 01_1_Introducing_Bitcoin typo fix Public key changed to private key. I'm not an expert at this, but if I'm not crazy public keys are public, so there's no reason to conceal it as they are openly shared. So, public key was changed to private key on line 45. --- 01_1_Introducing_Bitcoin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_1_Introducing_Bitcoin.md b/01_1_Introducing_Bitcoin.md index e8e9bcb0c..b0c848ff2 100644 --- a/01_1_Introducing_Bitcoin.md +++ b/01_1_Introducing_Bitcoin.md @@ -42,7 +42,7 @@ It's important to Bitcoin (and to most blockchain systems) because it's the basi **_What Is a Hash Function?_** A hash function is an algorithm frequently used with cryptography. It's a way to map a large, arbitrary amount of data to a small, fixed amount of data. Hash functions used in cryptography are one-way and collision-resistant, meaning that a hash can reliably be linked to the original data, but the original data can not be regenerated from the hash. Hashes thus allow the transmission of small amounts of data to represent large amounts of data, which can be important for efficiency and storage requirements. -Bitcoin takes advantage of a hash's ability to disguise the original data, which allows concealment of a user's actual public key, making transactions resistant to quantum computing. +Bitcoin takes advantage of a hash's ability to disguise the original data, which allows concealment of a user's actual private key, making transactions resistant to quantum computing. ### Public-Key Cryptography — In Short