Data Communication






Checksum



A checksum is a error detection method in Data Communication. It is used for errors which may have been introduced during transmission or storage. It is usually applied to an installation file after it is received from the download server.

The actual procedure which yields the checksum, given a data input is called a checksum function or checksum algorithm.

Checksum method can only detect errors but is unable to correct the error.

In this method a checksum is calculated based on the given binary strings which is sent with the data as redundant bits. This data and checksum is received at receiver end and checksum is calculated again, if checksum is 0 it means no error in data received, else there exists some error in the received data.

For the purpose of this program we are finding checksum for 2 binary strings.

Checksum Algorithm

  1. Take 2 binary input strings.
  2. Do their binary sum to find out the checksum which will be sent to the destination or to the receiver.
  3. In binary sum there are 6 cases:-
    1. If both bits are 0 and carry is 0, sum=0 and carry=0
    2. If both bits are 0 and carry is 1,sum=1 and carry=0
    3. If both bits are 1 and carry is 0,sum=0 and carry=1
    4. If both bits are 1 and carry is 1,sum=1 and carry=1
    5. If either bit is 1 and carry is 0,sum=1 and carry=0
    6. If either bit is 1 and carry is 1,sum=0 and carry=1
  4. While doing the addition we have to add the binary strings from rightmost end i.e LSB to MSB.
  5. When binary sum is done 1’s complement of it is taken by reversing 1’s to 0’s and vice versa.
  6. The resulting 1’s complement is the Checksum.
  7. Stop.

Following is the checksum program in C

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main()
{
	char a[20],b[20];
	char sum[20],complement[20];
    	int i,length;
    
	printf("Enter first binary string\n");
    	scanf("%s",a);
    	printf("Enter second binary string\n");
    	scanf("%s",b);
    
    	if(strlen(a)==strlen(b))
	{
		length = strlen(a);
		char carry='0';
        
		for(i=length-1;i>=0;i--)
        	{
			if(a[i]=='0' && b[i]=='0' && carry=='0')
            		{
                		sum[i]='0';
                		carry='0';
            		 }
            		else if(a[i]=='0' && b[i]=='0' && carry=='1')
            		{
                		sum[i]='1';
                		carry='0';
			 }
            		else if(a[i]=='0' && b[i]=='1' && carry=='0')
            		{
                		sum[i]='1';
                		carry='0';
 			 }
            		else if(a[i]=='0' && b[i]=='1' && carry=='1')
            		{
                		sum[i]='0';
                		carry='1';
 			 }
            		else if(a[i]=='1' && b[i]=='0' && carry=='0')
            		{
                		sum[i]='1';
                		carry='0';
 			 }
            		else if(a[i]=='1' && b[i]=='0' && carry=='1')
            		{
                		sum[i]='0';
                		carry='1';
 			 }
            		else if(a[i]=='1' && b[i]=='1' && carry=='0')
            		{
                		sum[i]='0';
                		carry='1';
 			 }
            		else if(a[i]=='1' && b[i]=='1' && carry=='1')
            		{
                		sum[i]='1';
                		carry='1';
 			 }
            		else
                		break;
        	}
        
		printf("\nSum=%c%s",carry,sum);
		
		for(i=0;i<length;i++)
        	{
            		if(sum[i]=='0')
                		complement[i]='1';
            		else
                		complement[i]='0';
        	 }
        
        	if(carry=='1')
            		carry='0';
        	else
            		carry='1';
        
		printf("\nChecksum=%c%s\n",carry,complement);
	 }
	else 
		printf("\nWrong input strings");
}

Here is a sample output