CryptoCalculator - 2020


*The original version was attained from a javascript blockchain tutorial part 1 and 2: : https://www.codementor.io/@savjee/how-to-build-a-blockchain-with-javascript-part-1-k7d373dtk

CryptoCalculator - Blockchain version

by: @Sqeel404


This is a piece of work created to help with identifying and understanding the beginner levels of IT Security and encryption techniques

This version also uses the BigInteger.js Library which can handle very large numbers in JavaScript and can be found at: https://github.com/peterolson/BigInteger.js

As well as the CryptoJS library. the docs can be found at: https://cryptojs.gitbook.io/docs/
And the CDN being used can be found at: https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.0.0/crypto-js.min.js

Contents:


Basic Blockchain Examples:



Generate Genesis Calculation:

*Each time a new Genesis is created it will clear the stored data




Blockchain Create Data Object

This will create a key: value pair and add to an array that is then attached to a block in the chain as data

e.g. "address": "123 Fake Street"







Blockchain Add Data Object to Chain

This will create a key: value pair and add to an array that is then attached to a block in the chain as data





This section is coming soon...