July 23, 2023
The RSA is one of the oldest public-key cryptosystems that is widely used for secure data transmission.
July 23, 2023
The RSA is one of the oldest public-key cryptosystems that is widely used for secure data transmission.
April 4, 2023
Two of the most fundamental data-structures are stacks and queues. This blog post explains how these data structures work and their implementation.
April 29, 2022
In this post, we will implement a CLI tool to send transactions and have miners include them in the block.
December 4, 2021
In this post, we will learn how to use Graphwiz to visualize a blockchain, showing all the blocks in the blockchain and marking the active ones.
November 28, 2021
A miner submits new blocks to the node via the JSON-RPC protocol. The node stores the block and notifies its peers.
November 20, 2021
JSON-RPC is an RPC protocol encoded as JSON. A request is a call to a method provided by the server, and it contains three members: method, params, and id.
November 11, 2021
Newer versions of Bitcoin use an approach where a node builds a partial view of the blockchain using block headers only, without downloading full block data.
November 10, 2021
A node role identifies the logic that runs on a node. There are four roles in the LearnCoin P2P network: network routing, full blockchain, miner, and wallet.
November 9, 2021
A peer-to-peer, or P2P, network is a network architecture where all the participants are equals, i.e., peers.
November 8, 2021
Proof-of-Work is a piece of data that requires significant computation to find but only a small amount of computation to verify as proven. In Bitcoin, miners must find a numeric solution to the SHA-256 hash that meets the difficulty criteria.
November 7, 2021
A blockchain is a distributed list (or a chain) of blocks of transactions. It is distributed across the entire network of nodes.
November 6, 2021
A cryptocurrency, a cryptographic hash function, and anatomy of the transaction, transaction inputs and transaction outputs. What are these?
November 5, 2021
November 4, 2021
This project aims to teach you how blockchain works at its core, starting with simple concepts and building up to more complex ones.