⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.txt

📁 CRC via table lookup
💻 TXT
字号:
CIS 554 Spring 2009
Assignemnt 1
Name: Dhaval Tamboli
Due Date: 5 March 2009
Submission Date: 5 March 2009


Objective:
Write a program to compute the CRC of a message using CRC-16 polynomial

Description:
	Here, Firstly this program will fetch data from file and stores it in to character array.
	It will pass the character array and length of the array to the crc function.
	In crc function, it will fetch the character and compute the CRC with shift and Ex-Or operations with CRC16, and return computed crc value to the main function
	That crc value will be converted into hexadecimal value and after converting into ASCII value it is appended at the last of the character string and passing into crc function again.
	And at last it shows crc 0.

 

Limitations:
	After fetching crc of the string, it gives value in Hexadecimal format.
	After converting into bytes, some values are out of 128 value which cant be converted into ASCII value, so it cant be appended into character string. So at last crc not returning 0.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -