日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

CSC 172代寫、Java/C++程序設(shè)計(jì)代做

時(shí)間:2024-03-19  來源:  作者: 我要糾錯(cuò)



CSC 172 – Project 1
• You may work on and submit your project individually or in groups of 2 students.
• If you work in a group you will have to prepare an extended README file to specify
who wrote each part of the code for maintaining clarity and transparency within the
group project.
• You are only allowed to cooperate with your group members, and you are not permitted
to share your solution with other students in any way.
Task
You will implement a cipher specified below using Java programming language. It shall
encrypt/decrypt text files including plaintext/ciphertext.
Background
1. Encryption is the process of encoding information or data in such a way that only
authorized parties can access it. This is typically done using algorithms and secret
keys to transform the original data into an unintelligible form known as ciphertext.
2. Plaintext refers to the original, unencrypted data or message that is intended to be
kept confidential.
3. Ciphertext refers to the encrypted form of data or information that has undergone
encryption.
Working with files
To encrypt content of a text file you have to:
• Read the file: open the file you want to encrypt and read its contents into memory.
• Convert to binary.
• Encrypt the data: use the presented encryption algorithm and the user secret key to
encrypt the data read from the file.
• Do NOT convert back to characters.
• Write encrypted data to file: save the encrypted data to a new file.
To decrypt content of a text file you have to:
1
• Read the file: open the file you want to decrypt and read its contents into memory
(content should be just long sequence of zeros and ones).
• Decrypt the data: use the presented decryption algorithm and the user secret key to
encrypt the data read from the file.
• Convert to characters.
• Write decrypted data to file: save the encrypted data to a new file.
1 Algorithm Description
The algorithm encrypts fixed number of bits only (64 bits). To encrypt longer input use the
simple ECB (Electronic Codebook) mode. Here’s how it works:
• Divide the data into blocks: the plaintext data is divided into fixed-size blocks of 64
bits.
• Apply encryption to each block independently: each block of plaintext is encrypted
independently using the same secret key and encryption algorithm. The same key is
used for each block.
• Output the encrypted blocks: the resulting ciphertext blocks are concatenated together
to form the complete ciphertext.
• If the last block doesn’t have enough bits, it needs to be padded to meet the required
block size. This process is known as padding. Use zero padding: append zero bits
to the end of the block until it reaches the required size. (Do not worry about extra
characters at the end when you decrypt.)
Include methods to encrypt/decrypt a single block of plaintext/ciphertext that implements the following symmetric-key encryption algorithm:
2
Your output shall be a block of 64 zeros and ones. (Do not represent the output block in a
Hex notation. If you do that you get -10%.) Encryption and decryption are almost the
same, but for decryption you need to use subkeys in a reverse order: k10, k9, ...k1
3
1. Input Splitting: The plaintext block of 64 bits is divided into two halves of 32 bits.
Let’s denote these halves as L0 and R0.
2. Round Function Application: In each round, a round function f is applied to one
half of the data, typically the right half Ri
, using the round key ki of 32 bits. The
result of the function is then XORed with the other half Li
.
Li+1 = Ri
Ri+1 = Li ⊕ f(Ri
, ki)
3. Swapping: After each round, the halves are swapped so that the left half becomes
the right half, and vice versa.
4. Iteration: Steps 2 and 3 are repeated 10 times.
5. Output Concatenation: After all rounds are completed, the final output consists of
the two halves (L10 and R10) concatenated together. This forms the ciphertext.
1.1 The f - function
The f - function (round function) works as follows:
1. XOR gate: The 32 input bits are XORed with the round key ki
.
2. Splitting: The 32 bits are divided into four pieces of 8 bits.
4
3. S-box: For each piece of 8 bits the output of a S-box is computed (’looked up in the
S table’).
4. Output Concatenation: All four pieces are concatenated together to form 32 bits.
5. Permutation: 32 bits are permuted using permutation P.
S is a substitution box transformation (Rijndael S-box):
The table of the S-box, stated in hexadecimal for compactness. Permutation P is given by
the table:
See the last page if clarification about S and P is needed.
5
1.2 Computing subkeys
The round keys of 32 bits (subkeys ki) are derived from the input key of 56 bits by means
of the key schedule (total of 10 subkeys) using the following schedule:
1. Splitting: The main key k of 56 bits is divided into two halves of 28 bits. Let’s denote
these halves as C0 and D0.
2. Transformation Function: In each round, a left shift by 1 function LS1 is applied
separately to both half’s of the data, typically the right half Ri
, using the round key
ki of 32 bits. The result of the function is then XORed with the other half Li
.
Ci+1 = LS1(Ci)
Di+1 = LS1(Di)
3. Concatenation: In each round two halves (Ci and Di) are concatenated together.
The first (left most) 32 bits forms the round subkey ki
.
4. Iteration: Steps 2 and 3 are repeated 10 times.
6
1.3 Required methods
Your implementation must include the following methods:
• Custom xorIt(binary1, binary2)
• Custom shiftIt(binaryInput)
• Custom permuteIt(binaryInput)
• Custom SubstitutionS(binaryInput)
• functionF(rightHalf, subkey)
• encryptBlock(block, inputKey),
• decryptBlock(block, inputKey),
• encryption(longBinaryInput, inputKey),
• decryption(longBinaryInput, inputKey),
• keyScheduleTransform(inputKey),
• runTests()
• You can have additional helper functions. Custom means you can NOT use
ready methods and must write your own methods.
1.4 Build-in tests
The runTests() mathod shall be invoked when user runs the program and it shall print
output for the following test cases:
• encryptBloc(all ones, all ones)
• encryptBloc(all zeros, all ones)
• encryptBloc(all zeros, zeros)
• encryptBloc(block,input key), where:
block = 1100110010000000000001110101111100010001100101111010001001001100
input key = all zeros
• decryptBlock(all ones, all ones)
• decryptBlock(all zeros, all ones)
7
• decryptBlock(all zeros, zeros)
• decryptBlock(block,input key), where:
block = 0101011010001110111001000111100001001110010001100110000011110101
input key = all ones
• decryptBlock(block,input key), where:
block = 0011000101110111011100100101001001001101011010100110011111010111
input key = all zeros
When running the program
When the user runs the program, it should print output for the test cases from section 1.4.
The program should then prompt the user to choose whether they want to encrypt or decrypt
and specify the filename to process. Additionally, the program should ask for a filename to
save the output, and an appropriate file should be created for this purpose.
Running Tests:
Output for: encryption(all ones, all ones)
0101011010001110111001000111100001001110010001100110000011110101
Output for: encryption(all zeros, all ones)
1100111010001000100011011010110110110010100101011001100000101000
Output for: encryption(all zeros, all zeros)
1010100101110001000110111000011110110001101110011001111100001010
Output for: encryption(block,all zeros), where:
block = 1100110010000000000001110101111100010001100101111010001001001100
0010101110011011010001010111000010110110101011111010000101100101
Output for: decryption(all ones, all ones)
0100111001000110011000001111010101010110100011101110010001111000
Output for: decryption(all zeros, all ones)
1011001010010101100110000010100011001110100010001000110110101101
Output for: decryption(all zeros, all zeros)
1011000110111001100111110000101010101001011100010001101110000111
Output for: decryption(block,all ones), where:
block = 0101011010001110111001000111100001001110010001100110000011110101
1111111111111111111111111111111111111111111111111111111111111111
Output for: decryption(block,all zeros), where:
block = 0011000101110111011100100101001001001101011010100110011111010111
1111111111111111111111111111111111111111111111111111111111111111
Do you want to encrypt or decrypt (E/D): E
Filename: data.txt
Secret key: 10101101011101110101010101011100010110101011100010101010
8
Output file: data1.txt
Submission Requirements
Zip (archive) all the project source files and a README file and save it as a Project1LastName.zip
file. Include your LastName (+partner) in the filename. Upload the file to the appropriate
folder on Gradescope. Your README file should include name of the members of the team
and any specific instruction which is useful for the project. It should also include all the features (including additional features) that you have implemented. Make sure all your source
files are properly commented so that user can browse your code without getting lost.
2 Grading
The rubric for this assignment is available through Gradescope. Your solution will be tested
with private test cases.
0 points if the program doesn’t compile. No points for the rest. Grading complete.
2.1 Important note about Academic Honesty
If some of the tasks are challenging or not for you, feel free to discuss with others but all
discussion have to be on high level without writing code or pseudocode. Once you sit down
and start coding, all the code you write should be your own . Using ready code from other
sources (internet, friends, chatGPT etc.) will be considered as a violation of the academic
honesty. After submitting your work, you should be able to explain your code in details, if
so requested by lab TAs or by the instructor. Your initial points may be reduced, if unable
to answer questions on your submitted work.
3 Hints
• Text file sbox.txt contains a constant - S- box look up table that you can use.
• S- box example:
– Let’s say we want to compute the substitution for the byte 53 (in binary 01010011).
– We’ll first convert 53 to its row and column indices.
– The first hex digit (5) represents the row index.
– The second hex digit (3) represents the column index.
– So, for 53, the row index is 5 and the column index is 3.
– Now, we’ll look up the value in the S-box using these indices.
9
– The value at row 5 and column 3 in the S-Box is ed (in binary 11101101).
• Permutation table example: Consider table (3x3):
Sample input: 101111000
Output after permutation: 001111010
– The permutation table rearranges the elements of the input according to the
specified positions.
– Each number in the permutation table represents the position of the corresponding
element in the input.
– For example, the element at position 1 of the input (value 1) becomes the element
at position 4 of the output.
– Similarly, the element at position 9 of the input (value 0) becomes the element at
position 1 of the output.
Sample input 2: 111000111
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp

標(biāo)簽:

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代寫MTRN4010、代做MATLAB程序設(shè)計(jì)
  • 下一篇:CS 213代做、Java設(shè)計(jì)編程代寫
  • 無相關(guān)信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風(fēng)景名勝區(qū)
    昆明西山國家級風(fēng)景名勝區(qū)
    昆明旅游索道攻略
    昆明旅游索道攻略
  • NBA直播 短信驗(yàn)證碼平臺 幣安官網(wǎng)下載 歐冠直播 WPS下載

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

              9000px;">

                        亚洲色图在线视频| 在线免费精品视频| 亚洲大型综合色站| 首页亚洲欧美制服丝腿| 亚洲成a人v欧美综合天堂| 亚洲成人综合网站| 综合久久久久综合| 夜色激情一区二区| 亚洲一区二区三区四区五区黄 | 国产精品系列在线播放| 亚洲色图制服丝袜| 中文字幕欧美国产| 欧美aa在线视频| 日韩和欧美一区二区| av一二三不卡影片| 国产成人精品免费在线| 在线日韩一区二区| 91豆麻精品91久久久久久| 久久新电视剧免费观看| 欧美日韩精品一区二区在线播放| 一区二区视频免费在线观看| 国产精品久久久久久久久晋中 | 欧洲另类一二三四区| 欧美精品一区二区高清在线观看 | 欧美日韩成人综合天天影院| 91视频免费播放| 丁香六月综合激情| 精品国产亚洲在线| 国产日产亚洲精品系列| 美女视频黄久久| 国产一区二区不卡老阿姨| 91麻豆精品国产自产在线观看一区| 亚洲免费av在线| 国产一区二区91| 成人午夜伦理影院| 精品一区二区精品| 欧美日韩国产经典色站一区二区三区| 亚洲午夜视频在线| 波多野洁衣一区| 91看片淫黄大片一级在线观看| 91免费看片在线观看| 成人手机电影网| 欧美精品一区二区久久婷婷| 中文字幕乱码久久午夜不卡 | 91国产福利在线| 91免费视频网| 一区二区三区日韩精品视频| 亚洲线精品一区二区三区| 欧美视频你懂的| 日韩一区二区三区观看| 日本不卡一二三| 福利电影一区二区三区| 国产精品高清亚洲| 视频一区在线播放| 欧美一级搡bbbb搡bbbb| 欧美激情中文字幕| av中文字幕在线不卡| 3atv一区二区三区| 亚洲欧洲日韩在线| 欧美综合天天夜夜久久| 欧美大片日本大片免费观看| 国产一区高清在线| 色成年激情久久综合| 亚洲国产日韩在线一区模特| 国产自产高清不卡| 亚洲三级久久久| 国产麻豆精品视频| 亚洲三级在线观看| 国产在线视频一区二区| 国产精品九色蝌蚪自拍| 午夜久久久久久久久久一区二区| 亚洲超丰满肉感bbw| 国产精品久久三区| 免费欧美在线视频| 国产成人夜色高潮福利影视| 亚洲欧美电影一区二区| 日本成人中文字幕在线视频| 欧美xxxx老人做受| 午夜激情一区二区三区| 久久久亚洲国产美女国产盗摄| 欧美亚洲尤物久久| 精品伊人久久久久7777人| 欧美日韩视频在线第一区| 极品美女销魂一区二区三区| 日本丶国产丶欧美色综合| 另类欧美日韩国产在线| 欧美久久一区二区| 成人免费毛片嘿嘿连载视频| 精品国产乱码久久久久久浪潮| 国产精品美女久久久久久| 亚洲成人激情自拍| 亚洲综合色噜噜狠狠| 久久久久综合网| 激情小说欧美图片| 亚洲精品伦理在线| 国产婷婷一区二区| 国产高清亚洲一区| 日本vs亚洲vs韩国一区三区二区| 日韩成人精品在线观看| 国产精品视频在线看| 青青国产91久久久久久| 成人免费在线视频| 成人av集中营| 国内成人自拍视频| 久久午夜色播影院免费高清| 91激情在线视频| 一区二区国产视频| 欧美激情一区二区三区蜜桃视频| 中文字幕不卡的av| 欧美日韩美女一区二区| 日韩精品视频网站| 亚洲品质自拍视频| 欧美性大战久久| av电影在线观看不卡| 中文字幕一区二区5566日韩| 欧美日韩成人在线| 精品一区二区免费在线观看| 视频一区在线视频| 精品国一区二区三区| 91精品久久久久久久99蜜桃| 麻豆精品在线视频| 日本免费新一区视频| 欧美激情在线一区二区三区| 久久精品欧美一区二区三区麻豆| 亚洲国产另类精品专区| 亚洲精品伦理在线| 日韩三级在线观看| 日韩一级精品视频在线观看| 国产一区不卡精品| 黑人巨大精品欧美黑白配亚洲| www.色精品| 国产福利视频一区二区三区| 亚洲免费观看高清完整版在线 | 最新久久zyz资源站| 成人午夜精品一区二区三区| 国产精品69毛片高清亚洲| 国产精品二区一区二区aⅴ污介绍| 欧美不卡激情三级在线观看| 国产一区欧美二区| 久久草av在线| 亚洲六月丁香色婷婷综合久久| 欧美性猛交xxxx黑人交| 奇米888四色在线精品| 亚洲午夜久久久久久久久久久| av电影在线观看不卡| 成人国产精品免费观看| 香蕉加勒比综合久久| 亚洲成人高清在线| 国产日韩欧美一区二区三区乱码| av男人天堂一区| 舔着乳尖日韩一区| 久久99久久99小草精品免视看| 色综合色狠狠天天综合色| 99天天综合性| 久久99日本精品| 国产精品一二三四| 天堂av在线一区| 紧缚奴在线一区二区三区| 亚洲 欧美综合在线网络| 免费精品99久久国产综合精品| 欧美性做爰猛烈叫床潮| 欧洲一区二区av| 国产成人av资源| 欧美性一级生活| 色悠久久久久综合欧美99| 91精品欧美综合在线观看最新| 日韩av中文字幕一区二区三区| 欧美国产一区二区在线观看| 欧美日韩不卡一区| 欧美第一区第二区| 欧美老人xxxx18| 久久夜色精品国产噜噜av| 欧美精三区欧美精三区| 久久精品夜夜夜夜久久| 日韩三级高清在线| 亚洲免费资源在线播放| 国产欧美日韩三区| 日韩综合在线视频| 亚洲成人三级小说| 99久久精品国产毛片| 粉嫩欧美一区二区三区高清影视| 蜜桃视频在线一区| 亚洲午夜私人影院| www.久久久久久久久| 亚洲欧美日韩电影| 极品瑜伽女神91| 亚洲一二三四区| 免费成人性网站| 北条麻妃一区二区三区| 国产一区亚洲一区| 在线观看视频一区二区| 欧美无砖专区一中文字| 国产偷国产偷亚洲高清人白洁| 色婷婷一区二区| 久久久91精品国产一区二区三区| 麻豆国产精品视频| 欧美日本一区二区| 一本色道久久综合狠狠躁的推荐| 91免费视频网| 91麻豆蜜桃一区二区三区|