1. Homepage
  2. Programming
  3. CE235 Computer Security - Assignment 2: Blockchain and Mining with Proof-of-work for Bitcoin

CE235 Computer Security - Assignment 2: Blockchain and Mining with Proof-of-work for Bitcoin

Engage in a Conversation
EssexNWUCE235Computer SecurityBlockchainBitCoinPython

Assignment 2: Blockchain and Mining with Proof-of-work for Bitcoin CourseNana.COM

CE235 Computer Security
2023-2024
CourseNana.COM

1. Introduction CourseNana.COM

1.1 Bitcoin Mining CourseNana.COM

Bitcoin is a cryptocurrency. In the Bitcoin system Bitcoins are mined through proof-of-work mechanism. Bitcoin miners are given technical puzzles to solve. There is only one puzzle at any time with a given difficulty CourseNana.COM

level, which is set by the system administrator. New puzzles are created after the current one is solved. CourseNana.COM

The first miner who solves the puzzle is awarded a specified number of bitcoins. The winner creates and sign a new block with digital signature technology and broadcast to other Bitcoin users. The signed block is linked to the previous signed blocks. These blocks form a chain of blocks (called blockchain) as shown in the following figure. The new signed blocks are verified by others and could become mature after being confirmed by a given CourseNana.COM

number of miners, which is measured by length of blocks linked to the new blocks. CourseNana.COM

Block header (signature) CourseNana.COM

Block header (signature) CourseNana.COM

Prev Hash Tx1 Tx2 Nonce TxN CourseNana.COM

Block n-2 Block n-1 Block n CourseNana.COM

Block header (signature) CourseNana.COM

Prev Hash Tx1 Tx2 Nonce TxN CourseNana.COM

Prev Hash Tx1 Tx2 Nonce TxN CourseNana.COM

1.2 Technical puzzle CourseNana.COM

The puzzle set in the proof-of-work is to find a specific integer number (called nonce), which together with a few other numbers (such as hash value of the previous block, the transactions to be included to the new block) CourseNana.COM

are hashed with SHA-256 algorithm and the hashed value satisfies a given condition. CourseNana.COM

The puzzle can be formulated as follows: CourseNana.COM

find nonce, subject to: hash(preHash, nonce, Tx) < levelHard CourseNana.COM

where preHash is the hash value of the previous block, Tx is transaction of bitcoins. levelHard is a given number, usually controlled by requiring a consecutive number of most significant bits (MSB) being zeros, for example the first 30 MSBs being zero. The more MSB zeros required on levelHard, the more difficult to solve the puzzle (finding the nonce satisfying the condition). Below gives a binary number with the 15 MSB being zeros and 5 CourseNana.COM

least significant bits (LSB). CourseNana.COM

(MSB) 00000000000000011100000101111110011010101100000 (LSB) CourseNana.COM

1.3 Signing and verifying a new block CourseNana.COM

The first miner solving the puzzle will create a new block, which includes a block header (storing the digital signature of this new block, which will include the hash value of the block body) and a block body. The block body includes the hash value of the previous block, the found nonce and transactions included in this block. The digital signature is created by encrypting the hash value of this new block with private key. The block is linked to the last block of the existing blockchain and broadcast. The new block will then be verified by others using CourseNana.COM

the winning miner’s public key and checking the hash values of this and previous blocks. CourseNana.COM

2. Specification CourseNana.COM

This assignment takes 16% of the marks (16 marks) of this module. The aim of the assignment is to write a Python 3 program, which will implement a simplified version of Bitcoin mining and digital signature schemes. Specifically, it includes the following THREE tasks, which is illustrated in the following figure. CourseNana.COM

Generate a RSA key pair CourseNana.COM

Required # of LSB zeros CourseNana.COM

Valid nonce CourseNana.COM

Private key of keyPair Message and CourseNana.COM

TASK 3 Digital signature TASK 4 CourseNana.COM

Valid or Not CourseNana.COM

Public key of keyPair CourseNana.COM

Find a valid nonce CourseNana.COM

Sign message (nonce, student #) CourseNana.COM

2.1 Task1: Create a RSA public/private key pair with 1024 bits key length [2 marks]
o Hint:youcansimplyusetheprovidedexample(Example1)inSampleprogramtogenerateaRSA CourseNana.COM

key pair.
o TheRSAkeypairswillbeusedinTask3andTask4ofthisassignment.
o The created RSA public {n,e} and private keys {n,d} need to be displayed with the following CourseNana.COM

format: CourseNana.COM

Verify the digital signature CourseNana.COM

Public key: (n=0x995361030caa5bf308e272fe07f3466c0727b5ac0c41107142fd97dd75ec4a197250c038 8b8711b210b2beb300980321913e9eb21b22f72c3fe8b62adda13491c6efbf3f4e6c6c60738da c790af2ca0b8067f4550fae82c8ea85d3fc0667f1de7a193f23a1d30e8e7f2894f07ce26b5d94 85df5a29fc265fc217dbbb91065b35, e=0x10001)
Private key: (n=0x995361030caa5bf308e272fe07f3466c0727b5ac0c41107142fd97dd75ec4a197250c038 8b8711b210b2beb300980321913e9eb21b22f72c3fe8b62adda13491c6efbf3f4e6c6c60738da c790af2ca0b8067f4550fae82c8ea85d3fc0667f1de7a193f23a1d30e8e7f2894f07ce26b5d94 85df5a29fc265fc217dbbb91065b35, d=0x24cf1913a7d74042dce7ac6ea30efae19568299bb7c769009ff20ca2ec9c010011eb23f28 f40aa7562bfdebb4f91aef2c091557cf1b9d7b82651a2663115f1ee0c416b1fec516a83657558 068f1eebffae9f11b2801830acf2b0af4367fcd26ffe4672c5c5165afaeb5eeb81e6497a04192 133476e124b4ce2a869a16fc998e1)
CourseNana.COM

2.2 Task2: Find a nonce which produces a hash value with hash algorithm SHA-256 satisfying requirement of the 8 least significant bits (LSB) being zero. [6 marks] CourseNana.COM

o Hint:youcanextendExample4intheprovidedsampleprogramtocompletethistask.Example4 generates only one nonce and check if the nonce is valid. CourseNana.COM

o You should try many random integers as nonce (with a loop) until you successfully find a nonce that meets the requirement. The only output from this task is the nonce, which needs to be displayed with the following format (suppose the found nonce is 12345): CourseNana.COM

                   Valid Nonce: 12345

2.3 Task3: Digitally sign the nonce and your student number with the RSA private key [4 marks]
o The message to be signed is a string consisting of the nonce and your student number, which are separated by a space. For example, if the found nonce is 12345 and your student number is 54321, CourseNana.COM

then the message to be signed needs to be a string “12345 54321”
o Hint: you should generate the message to be signed (a string with the nonce and your student CourseNana.COM

number), then use Example 2 in the provided sample program to sign the message with RSA key CourseNana.COM

pair generated in Task 1.
o TheoutputsofthisTask3includethehashedvalueofthemessageandthesignature,whichneedto CourseNana.COM

be displayed with the following format. CourseNana.COM

Message: 12345 54321
Hash value of message: 32547436749427615422843012801191259465058592439985110545719463144077305232244 Signature: 0x3ee3934a23e2d55c7377a125e052e5f305d82fbf0643713acb00cf1cb0c968eb65f56de35d0 37aac5d0d3ae7489d4067e9c38ceee2f4f602ebf90d8a070606c27808f22bd537a42e066c86c3 6d5e5efa786be09e0753f82a847a05d0bdcd0418624a3f3c8a203524f97f56528ffca1e633d29 bd8cfa80fb80bc3b4a53e2d51b5
CourseNana.COM

2.4 Task4: Verify the message authentication. [4 marks]
o The message authentication is to be verified by decrypting the digital signature with public key CourseNana.COM

{n,e} generated in Task 1 and comparing the hash value obtained from the decryption of the digital CourseNana.COM

signature to that of the signed message.
o Theprocessofverifyingthemessageauthenticationneedstooutputyesornodependingonthe CourseNana.COM

verification outcome.
o Hint:youcanutilizetheExample3intheprovidedsampleprogramtocompletethistask. CourseNana.COM

3. Sample Program CourseNana.COM

We provide a sample python program miningBitcoin_sample.py, which includes most of the needed RSA encryption and digital signature functions to complete the above tasks. It can be run from integrated development environments (IDLE). It can also be run from the command line like this: CourseNana.COM

     python mingingBitcoin_sample.py

You should modify the sample python program and add codes to complete the tasks, especially for Task2 on the proof-of-work part. A Google Colab notebook for the sample program is shared here.
Your own program should be called something like cs_bitcoin_registrationnumber.py (see naming instructions later).
Your program must run from the command line like this: CourseNana.COM

python cs_bitcoin_registrationnumber.py CourseNana.COM

The outputs of your program are required to be displayed, following the specified format for marking purposes. CourseNana.COM

4. How to submit CourseNana.COM

Submit one python .py file to Faser called: CourseNana.COM

     cs_bitcoin_registrationnumber.py

For example, if your registration number is 1234567, your filename will be: CourseNana.COM

     cs_bitcoin_1234567.py

Note that the filename is a .py file. The file name is all lower case. CourseNana.COM

5. Marking Scheme CourseNana.COM

You will be asked by the Dr He or teaching assistants at NWU to demonstrate your work and answer questions to ensure it is your own work. Your marks for this assignment will be dependent on the complement and output results of your program, and your answers to the questions asked by the teachers. If you are asked to but you don’t demonstrate your work, no mark will be given to your assignment work. CourseNana.COM

Apart from demonstration of your work to the teaching staff members, it is mandatory for you to submit your program file to Faser on time. Otherwise, you may not get any mark for your work on the assignment.
Your submitted program may be checked and tested by Dr He. If there are problems found from the testing, your marks received from your demonstration may be deducted.
CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
Essex代写,NWU代写,CE235代写,Computer Security代写,Blockchain代写,BitCoin代写,Python代写,Essex代编,NWU代编,CE235代编,Computer Security代编,Blockchain代编,BitCoin代编,Python代编,Essex代考,NWU代考,CE235代考,Computer Security代考,Blockchain代考,BitCoin代考,Python代考,Essexhelp,NWUhelp,CE235help,Computer Securityhelp,Blockchainhelp,BitCoinhelp,Pythonhelp,Essex作业代写,NWU作业代写,CE235作业代写,Computer Security作业代写,Blockchain作业代写,BitCoin作业代写,Python作业代写,Essex编程代写,NWU编程代写,CE235编程代写,Computer Security编程代写,Blockchain编程代写,BitCoin编程代写,Python编程代写,Essexprogramming help,NWUprogramming help,CE235programming help,Computer Securityprogramming help,Blockchainprogramming help,BitCoinprogramming help,Pythonprogramming help,Essexassignment help,NWUassignment help,CE235assignment help,Computer Securityassignment help,Blockchainassignment help,BitCoinassignment help,Pythonassignment help,Essexsolution,NWUsolution,CE235solution,Computer Securitysolution,Blockchainsolution,BitCoinsolution,Pythonsolution,