postheadericon Transposition cipher example using Java

Write a programs to simulate encryption and decryption technique using Transposition (Columnar) Cipher, algorithm development and Communication between client and server will be done using Java server socket programming.

TranspositionCipher.java

package bsr;
import java.util.*;
import java.net.*;
import java.io.*;
/*A code from www.bipinrupadiya.com*/
public class TranspositionCipher
{
public String selectedKey;
public char sortedKey[];
public int  sortedKeyPos[];


//default constructor define the default key
public TranspositionCipher()
{
selectedKey="megabuck";
sortedKeyPos =new int[selectedKey.length()];
sortedKey =selectedKey.toCharArray();
}

//Parameterized constructor define the custom key
public TranspositionCipher(String myKey)
{
selectedKey=myKey;
sortedKeyPos=new int[selectedKey.length()];
sortedKey=selectedKey.toCharArray();
}

//To reorder data do the sorting on selected key
public void doProcessOnKey()
{
//Find position of each character in selected key and arrange it on alphabetical order
int min,i,j;
char orginalKey[]=selectedKey.toCharArray();
char temp;

//First Sort the array of selected key
for(i=0;i<selectedKey.length();i++)
{
min=i;

for(j=i;j<selectedKey.length();j++)
{
if(sortedKey[min]>sortedKey[j])
{
min=j;
}
}
if(min!=i)
{
temp=sortedKey[i];
sortedKey[i]=sortedKey[min];
sortedKey[min]=temp;
}
}


// Fill the position of array according to alphabetical order
for(i=0;i<selectedKey.length();i++)
{
for(j=0;j<selectedKey.length();j++)
{
if(orginalKey[i]==sortedKey[j])
sortedKeyPos[i]=j;
}
}

}

//to encrypt the targeted string
public String doEncryption(String plainText)
{
int min,i,j;
char orginalKey[]=selectedKey.toCharArray();
char temp;

doProcessOnKey();

//Generate encrypted message by doing encryption using Transpotion Cipher
int row = plainText.length() / selectedKey.length();
int extrabit = plainText.length() % selectedKey.length();

int exrow = (extrabit==0)?0:1;

int rowtemp=-1,coltemp=-1;
int totallen=(row+exrow)*selectedKey.length();
char pmat[][]=new char[(row+exrow)][(selectedKey.length())];
char encry[]=new char[totallen];
int tempcnt=-1;

row=0;
for(i=0;i<totallen;i++)
{
coltemp++;
if(i<plainText.length())
{
if(coltemp==(selectedKey.length()))
{
row++;
coltemp=0;
}
pmat[row][coltemp]=plainText.charAt(i);
}
else
{ //do the padding ...
pmat[row][coltemp]='*';
}
}
int len=-1,k;
for(i=0;i<selectedKey.length();i++)
{
for(k=0;k<selectedKey.length();k++)
{
if(i==sortedKeyPos[k])
{
break;
}
}

for(j=0;j<=row;j++)
{
len++;
encry[len]=pmat[j][k];
  }
}

String p1=new String(encry);

return(new String(p1));
}

//to decrypt the targeted string
public String doDecryption(String s)
{
int min,i,j,k;
char key[]=selectedKey.toCharArray();
char encry[]=s.toCharArray();
char temp;

doProcessOnKey();

//Now generating plain message
int  row = s.length() / selectedKey.length();
char pmat[][] = new char[row][(selectedKey.length())];
int  tempcnt = -1;

for(i=0;i<selectedKey.length();i++)
{
for(k=0;k<selectedKey.length();k++)
{
if(i==sortedKeyPos[k])
{
break;
}
}

for(j=0;j<row;j++)
{
tempcnt++;
pmat[j][k]=encry[tempcnt];
}
}
//store matrix character in to a single string
char p1[] = new char[row*selectedKey.length()];
k=0;
for(i=0;i<row;i++)
{
for(j=0;j<selectedKey.length();j++)
{
if(pmat[i][j]!='*')
{
p1[k++]=pmat[i][j];
}
}
}
p1[k++]='\0';
return(new String(p1));
}
}

MySocket.java

package bsr;
/*A code from www.bipinrupadiya.com*/
import java.util.*;
import java.net.*;
import java.io.*;
public class MySocket
{
String serverName;
int port;
String frame;
public MySocket()
{
this.serverName="localhost";
this.port=6061;
this.frame="BipinRupadiya";
}
public MySocket(int port)
{
this.port=port;
}
public MySocket(String serverName,int port,String frame)
{
this.serverName=serverName;
this.port=port;
this.frame=frame;
}

public void sendFrame(String frame) throws Exception
{
ServerSocket ss=new ServerSocket(port);
Socket s=ss.accept();

byte bFrame[]=frame.getBytes();
OutputStream os=s.getOutputStream();
os.write(bFrame);
ss.close();
s.close();

    }
public String receiveFrame() throws Exception
{
Socket s=new Socket(serverName,port);
InputStream is=s.getInputStream();
BufferedReader br=new BufferedReader(new InputStreamReader(is));
String str=br.readLine();
s.close();
return(str);
    }

}

Sender.java


import bsr.*;
/*A code from www.bipinrupadiya.com*/
public class sender
{
public static void main(String args[])throws Exception
{

String myString="BipinRupadiya";
/*
// read data from user
Scanner sc=new Scanner(System.in);
System.out.println("Enter String(only alphabets allowed) :");
myString=sc.next();

*/

TranspositionCipher obj= new TranspositionCipher();

String encryptedString=obj.doEncryption(myString);
System.out.println("\nEncryted String : "+encryptedString);
MySocket m = new MySocket();
m.sendFrame(encryptedString);
}

}

Receiver.java


import bsr.*;
public class receiver
{
public static void main(String args[])throws Exception
{

TranspositionCipher obj= new TranspositionCipher();

MySocket m = new MySocket();
String encryptedString=m.receiveFrame();
String decryptedString=obj.doDecryption(encryptedString);
System.out.println("\nDecryted String : "+decryptedString);
}
}


To execute this code


  • compile bsr package
  • compile sender.java
  • compile receiver.java
  • open two command prompt
  • in 1st command prompt execute sender.java
  • in 2nd command prompt execute receiver.java



0 comments:

Blog Archive

Total Pageviews

© BipinRupadiya.com. Powered by Blogger.