#This is a script to generate graph for time taken by RSA for key generation and encryption/decryption for different message sizes.
# author: Shweta Agrawal
# Date: 15 Aug, 2003

# Run the RSA algorithm to generate key pairs and encrypt and decrypt a message for various key sizes.
#Store the output in keysize_time.out
./experiment_keysize.pl keysize_time.out

#Read the output file from RSA and generate the file in proper formant to create graph
#keysize generation_time encryption_time decryption_time 
./creategraph.pl keysize_time.out keysize_time.dat

#plot the graph
#output keysize_time.png
gnuplot plotgraph_keysize.p

