SlideShare a Scribd company logo
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 172
DESIGN AND IMPLEMENTATION OF NETWORK
SECURITY USING GENETIC ALGORITHM
Soumya Paul1
, Inadyuti Dutt2
, S.N. Chaudhuri3
1
Associate Professor & Head, 2
Asst. Professor, Dept. of Computer Application, B.P. Poddar Institute of Management &
Technology, West Bengal, India, 3
Director, Kanad Institute of Engineering & Management, West Bengal, India,
soumya.paul2000@gmail.com, inadyuti&gmail.com, satya.chaudhuri@rediffmail.com
Abstract
Over the last few years, Secured transmission of data has been a major issue in data communication. This project mainly concerns
about the security of confidential information and data transmission using public key cryptography with Genetic Algorithm in order
to provide confidentiality, authentication, integrity and non-repudiation of the messages. First, an algorithm is developed and
implemented to generate a key pair (Private and public Key).A plain text is encrypted using the Public Key of receiver to produce an
intermediate cipher. The intermediate cipher is again encrypted using genetic algorithm to produce final cipher. The final cipher
first decrypted to produce the intermediate cipher which in turn decrypted to get the plain text using the Private key of the
receiver or vice versa.
Index Terms: Network Security, Genetic Algorithm
-----------------------------------------------------------------------***-----------------------------------------------------------------------
1. INTRODUCTION
1.1 Network Security:
Network security consists of the provisions and policies to
prevent and monitor unauthorized access, misuse,
modification, or denial of a computer network and network-
accessible resources. Network security involves the
authorization of access to data in a network, which is
controlled by the network administrator. Users choose or are
assigned a password or other authenticating information that
allows them access to information and programs within their
authority. Network security covers a variety of computer
networks, both public and private, that are used in everyday
jobs conducting transactions and communications among
businesses, government agencies and individuals.
1.2 Genetic Algorithm:
Genetic algorithms are inspired by Darwin's theory about
evolution. Solution to a problem solved by genetic algorithms
is evolved.
Algorithm is started with a set of solutions (represented by
chromosomes) called population. Solutions from one
population are taken and used to form a new population. This
is motivated by a hope, that the new population will be better
than the old one. Solutions which are selected to form new
solutions (offspring) are selected according to their fitness -
the more suitable they are the more chances they have to
reproduce.
This is repeated until some condition (for example number of
populations or improvement of the best solution) is satisfied.
1.3 Outline of Remaining Section:
The paper is organized as follows Section 2 states the security
of files that contain certain confidential information. The
detail description of the proposed encryption decryption
algorithms with illustration of examples are explained in
section 3. Finally, the paper concludes in section 4.
2. PROBLEM STATEMENT
Encryption method follows as: A pair of key (Public and
Private) generated. In Asymmetric-key cryptography, it is
obvious that when a text is encrypted with a public key, it is
decrypted with corresponding private key and vice-versa. The
plain text is encrypted using public key to produce
Intermediate cipher. The Intermediate cipher is further
encrypted using Genetic Algorithm to produce the final cipher.
Decryption method: The Final cipher is decrypted using
Genetic Algorithm to get intermediate cipher which is again
decrypted using corresponding private key to get the plain
text.
Initial Encryption:
Intermediate cipher = Encrypt (plaintext, public Key) OR
Intermediate cipher = Encrypt (plaintext, Private Key)
Genetic Encryption:
Final cipher = Encrypt (Intermediate cipher)
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 173
Genetic Decryption:
Intermediate cipher = decrypt (Final cipher) Final Decryption:
Plaintext = decrypt (Intermediate cipher, Private Key) OR
Plaintext = decrypt (Intermediate cipher, Public Key)
3. PROPOSED ALGORITHM
3.1 Proposed Key Generation Heuristic:
Step 1: Generate two non coprime number (a, b)
Step 2: Set l: =L.C.M (a, b) g: = G.C.D (a, b)
Step 3: Set (a, g) as private key
Step 4: Set x: = ((a-1)/g) + ((a-1) %g)
y: =g
Step 5: Store x, y
Step 6: Set (b, l) as public key
Step 7: Set p: = ((l-1)/b + ((l-1) %b)
q: =b Step 8: Set p, q Step 9: Stop
3.2.1 Proposed Encryption Heuristic Using
Function:-
Input : text, key type, public key (p, q)
or private key (x, y)
Output : Intermediate Cipher
Step 1: if key type= private key
Read public key (p, q) from database
Set m: = 2 else
Read private key (x, y) from database
Set m: = 1
Step 2: Set x: = ((x-(y-1))*y) +y
Step 3: Set p: = ((p-(q-1))*q) +q
Step 4: if (x/y=p/q) and (x*q=p*y) then
Set n: = x*q
Step 5: Set key_arr []: =n
Step 6: if (length of text = odd number) Then text: =text + @
Step 7: Set i: =0, c: =” ”, j: =0
Step 8: while (i<length of text) Repeat Step 9 to Step 12
Step 9: if i= EVEN number
Set c: =c + text [i] + (m* key_arr[j]) Else
Step 10: Set c: = c+text[i] - (m* key_arr[j]) End if
Step 11: Set j: = j+1
Step 12: if j=key_length then set j: =0
Step 13: Print c
Step 14: Stop
3.2.2 Proposed Encryption Heuristic Using
Genetic Algorithm:-
Input : Intermediate Cipher(c)
Output : Final Cipher
Step 1: Set st1:= substring of c (1 to c/2)
step2:= substring of c (c/2 to c) Step 2: Set i=1
Step 3: while (i<length of text) Repeat Step 4 to Step 8
Step 4: perform crossover at mate point i with st1 (0, i) & st2
(i, n)
& st2 (0, i) & st1 (i, n)
Step 5: Set st: = st1+Reverse (st2)
Step 6: Reverse st & set gst= st
Step 7: compare c & gst to find out fit value (no of character
position remain unchanged)
Step 8: select the gst having minimum no of fit value
Step 9: Return gst
Step 10: Stop
3.3 Proposed Decryption heuristic using
Genetic Algorithm:-
Input : Final Cipher(c)
Output : Intermediate Cipher
Step 1: Set st: = reverse (cipher)
Step 2: Set n=length of cipher
Step 3: Set st1:= substring of c (1 to n/2)
st2:= substring of c (n/2 to n)
Step 4: Set st2: =Reverse of st2
i:=1
Step 5: while (i<length of st2) Repeat Step 6 to Step 9
Step 6: perform crossover at mate point i
with st1 (0, i) & st2 (i, n)
and st2 (0, i) & st1 (i, n)
Step 7: Set gst: =st1+st2
Step 8: compare gst & cipher to find out fit value
(no of character position
Remain unchanged)
Step 9: select the gst having minimum no of fit value
Step 10: Return gst
Step 11: Stop
3.4 Proposed Decryption Heuristic using
Function:-
Input : Intermediate cipher, keytype, public
key
(p, q) or private key (x, y)
Output : Plain Text
Step 1: if key type= public key
Set m: = 2 & Read private key (x, y) from database
else
Set m: = 1 & Read public key (p,q) from database
Step 2: Set x: = ((x-(y-1))*y) +y
Step 3: Set p: = ((p-(q-1))*q) +q
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 174
N l u h u a
u i u ] ! F
N i u h u a
u l u ] ! F
N i u h u a
u l u ] ! F
Step 4: if (x/y=p/q) and (x*q=p*y) then
Set n: = x*q
Step 5: Set key_arr [] : =n
Step 6: Set i=0, c=” ”, j=0
Step 7: while (i<length of plmcipher) Repeat Step 4 to Step 7
Step 8: if i= EVEN number then
Set c: =c + plmcipher[i] - (m* key[j]) Else
Step 9: Set c: = c+plmsiphert[i]+(m* key[j]) End if
Step 10: Set j: = j+1
Step 11: if j=length of key [] then Set j: =0
Step 12: Print c
3.5 Proposed Cryptographic Algorithm:
Step 1: Start
Step 2: Call Proposed Encryption Heuristic
Step 3: Call Proposed Encryption Heuristic using
Genetic Algorithm
Step 4: Call Proposed Encryption Heuristic using
Genetic Algorihm
Step 5: Call Proposed Decryption Heuristic
Step 6: Stop
3.6 Illustration of Proposed Algorithm with Example:
:
A. Key Generation
Two Non-Co prime number generated: a=39, b=453
l:=L.C.M (a, b)=L.C.M(39,453)=5889 g:= G.C.D (a,
b)=G.C.D(39,453)=3
x: = ((a-1)/g) + ((a-1) %g)
=((39-1)/3)+((39-1)%3)=14 y: =g=3
p: = ((l-1)/b + ((l-1) %b)
=((5889-1)/453+((5889-1)%453)=464 q: =b=453
Publish (x,y) as private key and (p,q) and public key
B. Encryption
STEP 1: Encryption using Public Key:
Input Public key(p,q)=(464,453) Input plain text: “Good
Morning”
Read Private Key(x,y)=(14,3) from Database x: = ((x-(y-
1))*y) +y=((14-(3-1))*3)+3=39
p: = ((p-(q-1))*q) +q
=((464-(453-1))*453)+453=5889 (x/y=p/q=13) and
(x*q=p*y=17667)
n: = x*q=39*453=17667 key_arr[]={7,6,6,7,1} m:=1 and c=””
when i=1 ie, ODD
c: =c + ASCII(text [i])+ (m* key_arr[j])
=ASCII(„G‟)+(1*7)=N
when i=2 ie, EVEN
c: = c+ ASCII(text[i])- (m* key_arr[j])
= N+(ASCII(„o‟)-(1*6))=Ni
Finally we get the intermediate cipher :
Niu]!Fuluhua
STEP 3: Encryption using Genetic Algorithm
Input: Intermediate Cipher (st): Niu]!Fuluhua n:=length of st
st1:=substring(0,n/2)= Niu]!F
st2:=substring(n/2,n)= uluhua
Iteration 1: Cross Over
Mutation: NluhuaF!]uiu
Inversion(gst): u i u ] ! F a u h u l N (st)
:N i u ] ! F u l u h u a
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged.
fit(st,gst)=5
Iteration 2: Cross Over
N I u ] ! F
u l u h u a
=
:
Mutation: NiuhuaF!]ulu
Inversion(gst): u l u ] ! F a u h u i N (st)
:N i u ] ! F u l u h u a
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged.
fit(st,gst)=4
Iteration 3: Cross Over
N i U ] ! F
u l U h u a
=
Mutation: NiuhuaF!]ulu
Inversion(gst): u l u ] ! F a u h u i N (st): N i u ] ! F u l u h u a
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged.
fit(st,gst)=4
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 175
N i u ] ! a
u l u h u F
N l u h u F
u i u ] ! a
N i u ] u a
u l u h ! F
N i u ] ! a
u l u h u F
N i u ] ! a
u l u h u F
U l u h u a
Iteration 4: Cross Over
N i u ] ! F
u l u h u a
=
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged. fit(st,gst)=2
So, fittest gst having minimum fit value is : u l u h u
F a ! ] u i N
C. Decryption
STEP 1: Decryption using Genetic
Algorithm
Input: Final Cipher (st):
u l u h u F a ! ] u i N Inversion: N i u ] ! a F u h u l u
Mutation(mst): N i u ] ! a u l u h u F
n:=length of st st1:=substring(0,n/2)= N i u ] ! a
st2:=substring(n/2,n)= u l u h u F
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged. fit(st,gst)=4
Iteration 1: Crossover
N i u ] ! a
u l u h u F
=
Mutation: Niu]uaF!hulu
Inversion(gst): u l u h ! F a u ] u i N
(st):N i u ] ! F u l u h u a
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged. fit(st,gst)=3
Iteration 5: Cross Over
gst= N l u h u F u i u ] ! a
st= u l u h u F a ! ] u i N
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged. fit(st,gst)=5
Iteration 2: Crossover
gst= N i u h u F u l u ] ! a st= u l u h u F a ! ] u i N
Mutation: Niu]!aFuhulu
Inversion(gst): u l u h u F a ! ] u i N (st):N i u ] ! F u l u h u a
Iteration 3: Crossover
=
N I u h u F
U L u ] ! a
gst= N i u h u F u l u ] ! a
st= u l u h u F a ! ] u i N
Fit value: Comparing st and gst to find out
no. of characters whose position remained unchanged.
fit(st,gst)=4
Iteration 4: Crossover
=
N i u ] ! a
U l u h u F
N i u ] u F
u l u h ! a
gst= N i u ] u F u l u
h ! a
when i=1 ie, ODD
c: =c + ASCII(text [i] )- (m* key_arr[j])=ASCII(„N‟)-(1*7)=G
when i=2 ie, EVEN
c: = c+text[i]+ (m* key_arr[j])= N+(ASCII(„i‟)+(1*6))= Go
st= u l u h u F a ! ] u i N
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged.
fit(st,gst)=3
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 176
N i u ] ! F
u l u h u a
Iteration 5: Crossover
=
N i u ] ! a
u l u h u F
gst=
N i u ] ! F u l u h u a
st= u l u h u F a ! ] u i N
Fit value: Comparing st and gst to find out no. of characters
whose position remained unchanged.
fit(st,gst)=2
So fittest string(fst) having minimum fit value(2) = N
i u ] ! F u l u h u a
STEP 2: Decryption using Private Key: Input Private
Key(x,y)=(14,3)
Input intermediate cipher: Niu]!Fuluhua
Read Public key(p,q)=(464,453)
from Database
x: = ((x-(y-1))*y) +y
=((14-(3-1))*3)+3=39 p: = ((p-(q-1))*q) +q
=((464-(453-1))*453)+453=5889
(x/y=p/q=13) and (x*q=p*y=17667)
n: = x*q=39*453=17667 key_arr[]={7,6,6,7,1} m:=1 and c=””
Finally we get the intermediate
cipher : Good Morning
CONCLUSIONS
In this work, a heuristic for network security in using genetic
algorithm in computer networks has been proposed. Here an
asymmetric cryptographic approach is implemented to ensure
confidentiality in networks, which is again designed and
implemented with genetic algorithm.
ACKNOWLEDGEMENTS
The authors of this research would like to thank B. P. Poddar
Institute of Management and Technology for providing high-
end computing laboratories during their research work.
REFERENCES
[1] Kartalopoulos, S.V. “Differentiating Data Security and
Network Security”, IEEE Communications, 2008. ICC‟08.
International Conference on Telecommun. Networking, Univ.
of Oklahoma, Tulsa, OK, pp. 1469 – 1473, Issue Date: 19-23,
May 2008.
[2] Stamatios V. Kartalopoulos, Williams Professor in
Telecommunications Networking, “Optical Network Security:
Countermeasures in View of Channel Attacks”, Military
Communications Conference,
2006. MILCOM 2006. IEEE , The University of Oklahoma,
Washington, DC, ISBN: 1-4244-0617-X, pp. 1-5, Issue Date:
23-25 Oct, 2006.
[3] Vulnerabilities and Security strategy for the Next
Generation bandwidth Elastic Pon Stamatios
V.Kartalopous,Di Jin Ece department,TCOM Graduate
program , The University of Oklahoma , 4502 E.41 st
Street,Tulsa,OK 74135 USA.
[4] Cryptography and Network Security , by Forouzon.
[5] An Introduction to Neural Network ,Kevin Gurney.
BIOGRAPHIES
Soumya Paul, Assoc. Professor and Head, Department of
Computer Application in B. P. Poddar Institute of
Management & Technology, Kolkata, has been in teaching
and research for over 12 years. He holds a Master‟s Degree in
Technology, Computer Application as well as in Mathematics
and has gathered vast experiences in the same. He received his
M.Sc. (Mathematics) from Visva Bharati University and stood
1st class 1st. He received MCA from National Institute of
Technology, Rourkella and M. Tech (CSE) from AAI-Deemed
University and pursuing Ph. D in Computer Science and
Engineering. He served as a faculty member and visiting
faculty member in various Institutes and Universities like
RCCIIT, Visva Bharati University, University of Calcutta,
Bardhaman University, West Bengal University of
Technology etc. He has delivered numerous lectures across
India in the field of his research interest, Optical Networks and
Genetic Algorithms. He is an author/co-author of several
published articles in International Journals and International
Conferences. He has chaired an International Conference
technically supported by IEEE communication. He has more
than 15 research publications and currently Reviewer and
Member, Editorial Board in many conferences and journals
like International Journal of Data Modelling and Knowledge
Management.
Inadyuti Dutt has been in the field of academics for more
than ten years and currently the Assistant Professor of Dept. of
Computer Application, B.P.Poddar Institute of Management &
Technology, West Bengal, India. Earlier she held various
technical positions in National Informatics Centre, Kolkata ,
Semaphore Computing Network etc. She has earned Master‟s
degree in Computer Application and currently pursuing her
research in Computer Science & Engineering. She has more
than 20 publications to her laurels and her research interest is
specifically in the field of Optical Networking, Security and
Genetic Algorithms. She has also been Member, Editorial
Board in journal publications
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 177
S.N. Chaudhuri, Director Kanad Institute of Engineering &
Management, Mankar, Burdwan, West Bengal is a renowned
Academician as well as a world famous Scientist. He has
working experience for nearly 40 years in different National
and International Institutions. As visiting Professor, he visited
different foreign Universities. He is having a number of
publications to his credit and his name has been included in
who is Who Indian Personages.

More Related Content

What's hot (17)

PDF
Implementation of RSA Algorithm with Chinese Remainder Theorem for Modulus N ...
CSCJournals
 
PDF
Novel Algorithm For Encryption:Hybrid of Transposition and Substitution Method
IDES Editor
 
PPTX
Image Encryption and Compression
Sayantan Sur
 
PPTX
Cloud computing and security final
Akash Kamble
 
PDF
A Secure Encryption Technique based on Advanced Hill Cipher For a Public Key ...
IOSR Journals
 
PDF
Comparison of Secret Splitting, Secret Sharing and Recursive Threshold Visual...
TELKOMNIKA JOURNAL
 
PDF
Computer security module 2
Deepak John
 
PPTX
Cloud computing and security 03
Akash Kamble
 
PDF
BLIND SIGNATURE SCHEME BASED ON CHEBYSHEV POLYNOMIALS
IJNSA Journal
 
PDF
EFFICIENT CONDITIONAL PROXY REENCRYPTION WITH CHOSEN CIPHER TEXT SECURITY
IJNSA Journal
 
DOCX
RSA - ENCRYPTION ALGORITHM CRYPTOGRAPHY
Qualcomm
 
PPT
Cupdf.com public key-cryptography-569692953829a
jsk1950
 
PDF
On the Usage of Chained Codes in Cryptography
CSCJournals
 
PDF
IRJET- FPGA Implementation of Image Encryption and Decryption using Fully Hom...
IRJET Journal
 
PDF
Elgamal signature for content distribution with network coding
ijwmn
 
PDF
An Advance Approach of Image Encryption using AES, Genetic Algorithm and RSA ...
IJEACS
 
PDF
New Technique Using Multiple Symmetric keys for Multilevel Encryption
IJERA Editor
 
Implementation of RSA Algorithm with Chinese Remainder Theorem for Modulus N ...
CSCJournals
 
Novel Algorithm For Encryption:Hybrid of Transposition and Substitution Method
IDES Editor
 
Image Encryption and Compression
Sayantan Sur
 
Cloud computing and security final
Akash Kamble
 
A Secure Encryption Technique based on Advanced Hill Cipher For a Public Key ...
IOSR Journals
 
Comparison of Secret Splitting, Secret Sharing and Recursive Threshold Visual...
TELKOMNIKA JOURNAL
 
Computer security module 2
Deepak John
 
Cloud computing and security 03
Akash Kamble
 
BLIND SIGNATURE SCHEME BASED ON CHEBYSHEV POLYNOMIALS
IJNSA Journal
 
EFFICIENT CONDITIONAL PROXY REENCRYPTION WITH CHOSEN CIPHER TEXT SECURITY
IJNSA Journal
 
RSA - ENCRYPTION ALGORITHM CRYPTOGRAPHY
Qualcomm
 
Cupdf.com public key-cryptography-569692953829a
jsk1950
 
On the Usage of Chained Codes in Cryptography
CSCJournals
 
IRJET- FPGA Implementation of Image Encryption and Decryption using Fully Hom...
IRJET Journal
 
Elgamal signature for content distribution with network coding
ijwmn
 
An Advance Approach of Image Encryption using AES, Genetic Algorithm and RSA ...
IJEACS
 
New Technique Using Multiple Symmetric keys for Multilevel Encryption
IJERA Editor
 

Viewers also liked (20)

PDF
Preliminary investigation of gypsum bonded moulds
eSAT Publishing House
 
PDF
Design and development of non server peer 2 peer secure communication using j...
eSAT Publishing House
 
PDF
Arsenic removal from water using activated carbon
eSAT Publishing House
 
PDF
An overview of methods for monitoring web services based on the quality of se...
eSAT Publishing House
 
PDF
Effect of the use of crumb rubber in conventional
eSAT Publishing House
 
PDF
Monitoring and control of grain storage using plc
eSAT Publishing House
 
PDF
Digital signal processing techniques for lti fiber
eSAT Publishing House
 
PDF
Dry sliding wear behaviour of sand cast cu 11 ni-6sn alloy
eSAT Publishing House
 
PDF
Radiation pattern of yagi uda antenna using usrp on gnu
eSAT Publishing House
 
PDF
Conceptual design of injection mould tool for inlet
eSAT Publishing House
 
PDF
Real time reservoir operation (calibration phase) a case study
eSAT Publishing House
 
PDF
Power house automation using wireless communication
eSAT Publishing House
 
PDF
Electronic voting machine using zigbee
eSAT Publishing House
 
PDF
Parallel unit connected generator model for third
eSAT Publishing House
 
PDF
Analysis of aerodynamic characteristics of a supercritical airfoil for low sp...
eSAT Publishing House
 
PDF
Cfd analaysis of flow through a conical exhaust
eSAT Publishing House
 
PDF
A brawny multicolor lane detection method to indian scenarios
eSAT Publishing House
 
PDF
The velocity control of the electro hydraulic servo system
eSAT Publishing House
 
PDF
Secure data storage and retrieval in the cloud
eSAT Publishing House
 
PDF
Maintenance performance metrics for manufacturing industry
eSAT Publishing House
 
Preliminary investigation of gypsum bonded moulds
eSAT Publishing House
 
Design and development of non server peer 2 peer secure communication using j...
eSAT Publishing House
 
Arsenic removal from water using activated carbon
eSAT Publishing House
 
An overview of methods for monitoring web services based on the quality of se...
eSAT Publishing House
 
Effect of the use of crumb rubber in conventional
eSAT Publishing House
 
Monitoring and control of grain storage using plc
eSAT Publishing House
 
Digital signal processing techniques for lti fiber
eSAT Publishing House
 
Dry sliding wear behaviour of sand cast cu 11 ni-6sn alloy
eSAT Publishing House
 
Radiation pattern of yagi uda antenna using usrp on gnu
eSAT Publishing House
 
Conceptual design of injection mould tool for inlet
eSAT Publishing House
 
Real time reservoir operation (calibration phase) a case study
eSAT Publishing House
 
Power house automation using wireless communication
eSAT Publishing House
 
Electronic voting machine using zigbee
eSAT Publishing House
 
Parallel unit connected generator model for third
eSAT Publishing House
 
Analysis of aerodynamic characteristics of a supercritical airfoil for low sp...
eSAT Publishing House
 
Cfd analaysis of flow through a conical exhaust
eSAT Publishing House
 
A brawny multicolor lane detection method to indian scenarios
eSAT Publishing House
 
The velocity control of the electro hydraulic servo system
eSAT Publishing House
 
Secure data storage and retrieval in the cloud
eSAT Publishing House
 
Maintenance performance metrics for manufacturing industry
eSAT Publishing House
 
Ad

Similar to Design and implementation of network security using genetic algorithm (20)

PDF
Features of genetic algorithm for plain text encryption
IJECEIAES
 
PDF
IRJET- Embedding Randomness into Symmetric Key Encryption using Genetic Algor...
IRJET Journal
 
PDF
IRJET- Enhanced Security using Genetic Algorithm in Cryptography
IRJET Journal
 
PDF
Fn3410321036
IJERA Editor
 
PDF
ijrrest_vol-2_issue-2_015
Ashish Gupta
 
PDF
Implementation of aes and blowfish algorithm
eSAT Publishing House
 
PPT
A NEW APPROACH TOWARDS INFORMATION SECURITY BASED ON DNA CRYPTOGRAPHY
Abhishek Majumdar
 
PDF
ASCII Value Based Encryption System (AVB)
IJERA Editor
 
PDF
A Novel Approach to Genetic Algorithm Based Cryptography
IJORCS
 
PDF
Design and Implementation of New Encryption algorithm to Enhance Performance...
IOSR Journals
 
PDF
Hybrid Encryption for Database Security
IRJET Journal
 
PDF
Presentation Slides - Genetic algorithm based key generation for fully homomo...
MajedahAlkharji
 
PDF
AWS Cloud Based Encryption Decryption System
IRJET Journal
 
PDF
IRJET- Data Transmission using RSA Algorithm
IRJET Journal
 
PDF
A survey on encryption algorithms for data security
eSAT Journals
 
PDF
Cryptographic Algorithms For Secure Data Communication
CSCJournals
 
PDF
M021201092098
theijes
 
PDF
Securing Messages from Brute Force Attack by Combined Approach of Honey Encry...
IRJET Journal
 
PDF
Dynamic Key Matrix of Hill Cipher Using Genetic Algorithm
Universitas Pembangunan Panca Budi
 
PDF
Iaetsd enhanced cryptography algorithm for providing
Iaetsd Iaetsd
 
Features of genetic algorithm for plain text encryption
IJECEIAES
 
IRJET- Embedding Randomness into Symmetric Key Encryption using Genetic Algor...
IRJET Journal
 
IRJET- Enhanced Security using Genetic Algorithm in Cryptography
IRJET Journal
 
Fn3410321036
IJERA Editor
 
ijrrest_vol-2_issue-2_015
Ashish Gupta
 
Implementation of aes and blowfish algorithm
eSAT Publishing House
 
A NEW APPROACH TOWARDS INFORMATION SECURITY BASED ON DNA CRYPTOGRAPHY
Abhishek Majumdar
 
ASCII Value Based Encryption System (AVB)
IJERA Editor
 
A Novel Approach to Genetic Algorithm Based Cryptography
IJORCS
 
Design and Implementation of New Encryption algorithm to Enhance Performance...
IOSR Journals
 
Hybrid Encryption for Database Security
IRJET Journal
 
Presentation Slides - Genetic algorithm based key generation for fully homomo...
MajedahAlkharji
 
AWS Cloud Based Encryption Decryption System
IRJET Journal
 
IRJET- Data Transmission using RSA Algorithm
IRJET Journal
 
A survey on encryption algorithms for data security
eSAT Journals
 
Cryptographic Algorithms For Secure Data Communication
CSCJournals
 
M021201092098
theijes
 
Securing Messages from Brute Force Attack by Combined Approach of Honey Encry...
IRJET Journal
 
Dynamic Key Matrix of Hill Cipher Using Genetic Algorithm
Universitas Pembangunan Panca Budi
 
Iaetsd enhanced cryptography algorithm for providing
Iaetsd Iaetsd
 
Ad

More from eSAT Publishing House (20)

PDF
Likely impacts of hudhud on the environment of visakhapatnam
eSAT Publishing House
 
PDF
Impact of flood disaster in a drought prone area – case study of alampur vill...
eSAT Publishing House
 
PDF
Hudhud cyclone – a severe disaster in visakhapatnam
eSAT Publishing House
 
PDF
Groundwater investigation using geophysical methods a case study of pydibhim...
eSAT Publishing House
 
PDF
Flood related disasters concerned to urban flooding in bangalore, india
eSAT Publishing House
 
PDF
Enhancing post disaster recovery by optimal infrastructure capacity building
eSAT Publishing House
 
PDF
Effect of lintel and lintel band on the global performance of reinforced conc...
eSAT Publishing House
 
PDF
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
eSAT Publishing House
 
PDF
Wind damage to buildings, infrastrucuture and landscape elements along the be...
eSAT Publishing House
 
PDF
Shear strength of rc deep beam panels – a review
eSAT Publishing House
 
PDF
Role of voluntary teams of professional engineers in dissater management – ex...
eSAT Publishing House
 
PDF
Risk analysis and environmental hazard management
eSAT Publishing House
 
PDF
Review study on performance of seismically tested repaired shear walls
eSAT Publishing House
 
PDF
Monitoring and assessment of air quality with reference to dust particles (pm...
eSAT Publishing House
 
PDF
Low cost wireless sensor networks and smartphone applications for disaster ma...
eSAT Publishing House
 
PDF
Coastal zones – seismic vulnerability an analysis from east coast of india
eSAT Publishing House
 
PDF
Can fracture mechanics predict damage due disaster of structures
eSAT Publishing House
 
PDF
Assessment of seismic susceptibility of rc buildings
eSAT Publishing House
 
PDF
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
eSAT Publishing House
 
PDF
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
eSAT Publishing House
 
Likely impacts of hudhud on the environment of visakhapatnam
eSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
eSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
eSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
eSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
eSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
eSAT Publishing House
 
Risk analysis and environmental hazard management
eSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
eSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
eSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
eSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
eSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
eSAT Publishing House
 

Recently uploaded (20)

PPTX
Thermal runway and thermal stability.pptx
godow93766
 
PDF
PORTFOLIO Golam Kibria Khan — architect with a passion for thoughtful design...
MasumKhan59
 
PPTX
Element 11. ELECTRICITY safety and hazards
merrandomohandas
 
PPTX
Damage of stability of a ship and how its change .pptx
ehamadulhaque
 
PPTX
GitOps_Repo_Structure for begeinner(Scaffolindg)
DanialHabibi2
 
DOC
MRRS Strength and Durability of Concrete
CivilMythili
 
PPTX
265587293-NFPA 101 Life safety code-PPT-1.pptx
chandermwason
 
PDF
Pressure Measurement training for engineers and Technicians
AIESOLUTIONS
 
PDF
International Journal of Information Technology Convergence and services (IJI...
ijitcsjournal4
 
PDF
Basic_Concepts_in_Clinical_Biochemistry_2018كيمياء_عملي.pdf
AdelLoin
 
PPTX
Worm gear strength and wear calculation as per standard VB Bhandari Databook.
shahveer210504
 
PDF
Set Relation Function Practice session 24.05.2025.pdf
DrStephenStrange4
 
PDF
Introduction to Productivity and Quality
মোঃ ফুরকান উদ্দিন জুয়েল
 
PPTX
The Role of Information Technology in Environmental Protectio....pptx
nallamillisriram
 
PPTX
Product Development & DevelopmentLecture02.pptx
zeeshanwazir2
 
PPTX
原版一样(Acadia毕业证书)加拿大阿卡迪亚大学毕业证办理方法
Taqyea
 
PPTX
Mechanical Design of shell and tube heat exchangers as per ASME Sec VIII Divi...
shahveer210504
 
PPTX
Green Building & Energy Conservation ppt
Sagar Sarangi
 
PPTX
Lecture 1 Shell and Tube Heat exchanger-1.pptx
mailforillegalwork
 
PPTX
Depth First Search Algorithm in 🧠 DFS in Artificial Intelligence (AI)
rafeeqshaik212002
 
Thermal runway and thermal stability.pptx
godow93766
 
PORTFOLIO Golam Kibria Khan — architect with a passion for thoughtful design...
MasumKhan59
 
Element 11. ELECTRICITY safety and hazards
merrandomohandas
 
Damage of stability of a ship and how its change .pptx
ehamadulhaque
 
GitOps_Repo_Structure for begeinner(Scaffolindg)
DanialHabibi2
 
MRRS Strength and Durability of Concrete
CivilMythili
 
265587293-NFPA 101 Life safety code-PPT-1.pptx
chandermwason
 
Pressure Measurement training for engineers and Technicians
AIESOLUTIONS
 
International Journal of Information Technology Convergence and services (IJI...
ijitcsjournal4
 
Basic_Concepts_in_Clinical_Biochemistry_2018كيمياء_عملي.pdf
AdelLoin
 
Worm gear strength and wear calculation as per standard VB Bhandari Databook.
shahveer210504
 
Set Relation Function Practice session 24.05.2025.pdf
DrStephenStrange4
 
Introduction to Productivity and Quality
মোঃ ফুরকান উদ্দিন জুয়েল
 
The Role of Information Technology in Environmental Protectio....pptx
nallamillisriram
 
Product Development & DevelopmentLecture02.pptx
zeeshanwazir2
 
原版一样(Acadia毕业证书)加拿大阿卡迪亚大学毕业证办理方法
Taqyea
 
Mechanical Design of shell and tube heat exchangers as per ASME Sec VIII Divi...
shahveer210504
 
Green Building & Energy Conservation ppt
Sagar Sarangi
 
Lecture 1 Shell and Tube Heat exchanger-1.pptx
mailforillegalwork
 
Depth First Search Algorithm in 🧠 DFS in Artificial Intelligence (AI)
rafeeqshaik212002
 

Design and implementation of network security using genetic algorithm

  • 1. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 172 DESIGN AND IMPLEMENTATION OF NETWORK SECURITY USING GENETIC ALGORITHM Soumya Paul1 , Inadyuti Dutt2 , S.N. Chaudhuri3 1 Associate Professor & Head, 2 Asst. Professor, Dept. of Computer Application, B.P. Poddar Institute of Management & Technology, West Bengal, India, 3 Director, Kanad Institute of Engineering & Management, West Bengal, India, [email protected], inadyuti&gmail.com, [email protected] Abstract Over the last few years, Secured transmission of data has been a major issue in data communication. This project mainly concerns about the security of confidential information and data transmission using public key cryptography with Genetic Algorithm in order to provide confidentiality, authentication, integrity and non-repudiation of the messages. First, an algorithm is developed and implemented to generate a key pair (Private and public Key).A plain text is encrypted using the Public Key of receiver to produce an intermediate cipher. The intermediate cipher is again encrypted using genetic algorithm to produce final cipher. The final cipher first decrypted to produce the intermediate cipher which in turn decrypted to get the plain text using the Private key of the receiver or vice versa. Index Terms: Network Security, Genetic Algorithm -----------------------------------------------------------------------***----------------------------------------------------------------------- 1. INTRODUCTION 1.1 Network Security: Network security consists of the provisions and policies to prevent and monitor unauthorized access, misuse, modification, or denial of a computer network and network- accessible resources. Network security involves the authorization of access to data in a network, which is controlled by the network administrator. Users choose or are assigned a password or other authenticating information that allows them access to information and programs within their authority. Network security covers a variety of computer networks, both public and private, that are used in everyday jobs conducting transactions and communications among businesses, government agencies and individuals. 1.2 Genetic Algorithm: Genetic algorithms are inspired by Darwin's theory about evolution. Solution to a problem solved by genetic algorithms is evolved. Algorithm is started with a set of solutions (represented by chromosomes) called population. Solutions from one population are taken and used to form a new population. This is motivated by a hope, that the new population will be better than the old one. Solutions which are selected to form new solutions (offspring) are selected according to their fitness - the more suitable they are the more chances they have to reproduce. This is repeated until some condition (for example number of populations or improvement of the best solution) is satisfied. 1.3 Outline of Remaining Section: The paper is organized as follows Section 2 states the security of files that contain certain confidential information. The detail description of the proposed encryption decryption algorithms with illustration of examples are explained in section 3. Finally, the paper concludes in section 4. 2. PROBLEM STATEMENT Encryption method follows as: A pair of key (Public and Private) generated. In Asymmetric-key cryptography, it is obvious that when a text is encrypted with a public key, it is decrypted with corresponding private key and vice-versa. The plain text is encrypted using public key to produce Intermediate cipher. The Intermediate cipher is further encrypted using Genetic Algorithm to produce the final cipher. Decryption method: The Final cipher is decrypted using Genetic Algorithm to get intermediate cipher which is again decrypted using corresponding private key to get the plain text. Initial Encryption: Intermediate cipher = Encrypt (plaintext, public Key) OR Intermediate cipher = Encrypt (plaintext, Private Key) Genetic Encryption: Final cipher = Encrypt (Intermediate cipher)
  • 2. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 173 Genetic Decryption: Intermediate cipher = decrypt (Final cipher) Final Decryption: Plaintext = decrypt (Intermediate cipher, Private Key) OR Plaintext = decrypt (Intermediate cipher, Public Key) 3. PROPOSED ALGORITHM 3.1 Proposed Key Generation Heuristic: Step 1: Generate two non coprime number (a, b) Step 2: Set l: =L.C.M (a, b) g: = G.C.D (a, b) Step 3: Set (a, g) as private key Step 4: Set x: = ((a-1)/g) + ((a-1) %g) y: =g Step 5: Store x, y Step 6: Set (b, l) as public key Step 7: Set p: = ((l-1)/b + ((l-1) %b) q: =b Step 8: Set p, q Step 9: Stop 3.2.1 Proposed Encryption Heuristic Using Function:- Input : text, key type, public key (p, q) or private key (x, y) Output : Intermediate Cipher Step 1: if key type= private key Read public key (p, q) from database Set m: = 2 else Read private key (x, y) from database Set m: = 1 Step 2: Set x: = ((x-(y-1))*y) +y Step 3: Set p: = ((p-(q-1))*q) +q Step 4: if (x/y=p/q) and (x*q=p*y) then Set n: = x*q Step 5: Set key_arr []: =n Step 6: if (length of text = odd number) Then text: =text + @ Step 7: Set i: =0, c: =” ”, j: =0 Step 8: while (i<length of text) Repeat Step 9 to Step 12 Step 9: if i= EVEN number Set c: =c + text [i] + (m* key_arr[j]) Else Step 10: Set c: = c+text[i] - (m* key_arr[j]) End if Step 11: Set j: = j+1 Step 12: if j=key_length then set j: =0 Step 13: Print c Step 14: Stop 3.2.2 Proposed Encryption Heuristic Using Genetic Algorithm:- Input : Intermediate Cipher(c) Output : Final Cipher Step 1: Set st1:= substring of c (1 to c/2) step2:= substring of c (c/2 to c) Step 2: Set i=1 Step 3: while (i<length of text) Repeat Step 4 to Step 8 Step 4: perform crossover at mate point i with st1 (0, i) & st2 (i, n) & st2 (0, i) & st1 (i, n) Step 5: Set st: = st1+Reverse (st2) Step 6: Reverse st & set gst= st Step 7: compare c & gst to find out fit value (no of character position remain unchanged) Step 8: select the gst having minimum no of fit value Step 9: Return gst Step 10: Stop 3.3 Proposed Decryption heuristic using Genetic Algorithm:- Input : Final Cipher(c) Output : Intermediate Cipher Step 1: Set st: = reverse (cipher) Step 2: Set n=length of cipher Step 3: Set st1:= substring of c (1 to n/2) st2:= substring of c (n/2 to n) Step 4: Set st2: =Reverse of st2 i:=1 Step 5: while (i<length of st2) Repeat Step 6 to Step 9 Step 6: perform crossover at mate point i with st1 (0, i) & st2 (i, n) and st2 (0, i) & st1 (i, n) Step 7: Set gst: =st1+st2 Step 8: compare gst & cipher to find out fit value (no of character position Remain unchanged) Step 9: select the gst having minimum no of fit value Step 10: Return gst Step 11: Stop 3.4 Proposed Decryption Heuristic using Function:- Input : Intermediate cipher, keytype, public key (p, q) or private key (x, y) Output : Plain Text Step 1: if key type= public key Set m: = 2 & Read private key (x, y) from database else Set m: = 1 & Read public key (p,q) from database Step 2: Set x: = ((x-(y-1))*y) +y Step 3: Set p: = ((p-(q-1))*q) +q
  • 3. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 174 N l u h u a u i u ] ! F N i u h u a u l u ] ! F N i u h u a u l u ] ! F Step 4: if (x/y=p/q) and (x*q=p*y) then Set n: = x*q Step 5: Set key_arr [] : =n Step 6: Set i=0, c=” ”, j=0 Step 7: while (i<length of plmcipher) Repeat Step 4 to Step 7 Step 8: if i= EVEN number then Set c: =c + plmcipher[i] - (m* key[j]) Else Step 9: Set c: = c+plmsiphert[i]+(m* key[j]) End if Step 10: Set j: = j+1 Step 11: if j=length of key [] then Set j: =0 Step 12: Print c 3.5 Proposed Cryptographic Algorithm: Step 1: Start Step 2: Call Proposed Encryption Heuristic Step 3: Call Proposed Encryption Heuristic using Genetic Algorithm Step 4: Call Proposed Encryption Heuristic using Genetic Algorihm Step 5: Call Proposed Decryption Heuristic Step 6: Stop 3.6 Illustration of Proposed Algorithm with Example: : A. Key Generation Two Non-Co prime number generated: a=39, b=453 l:=L.C.M (a, b)=L.C.M(39,453)=5889 g:= G.C.D (a, b)=G.C.D(39,453)=3 x: = ((a-1)/g) + ((a-1) %g) =((39-1)/3)+((39-1)%3)=14 y: =g=3 p: = ((l-1)/b + ((l-1) %b) =((5889-1)/453+((5889-1)%453)=464 q: =b=453 Publish (x,y) as private key and (p,q) and public key B. Encryption STEP 1: Encryption using Public Key: Input Public key(p,q)=(464,453) Input plain text: “Good Morning” Read Private Key(x,y)=(14,3) from Database x: = ((x-(y- 1))*y) +y=((14-(3-1))*3)+3=39 p: = ((p-(q-1))*q) +q =((464-(453-1))*453)+453=5889 (x/y=p/q=13) and (x*q=p*y=17667) n: = x*q=39*453=17667 key_arr[]={7,6,6,7,1} m:=1 and c=”” when i=1 ie, ODD c: =c + ASCII(text [i])+ (m* key_arr[j]) =ASCII(„G‟)+(1*7)=N when i=2 ie, EVEN c: = c+ ASCII(text[i])- (m* key_arr[j]) = N+(ASCII(„o‟)-(1*6))=Ni Finally we get the intermediate cipher : Niu]!Fuluhua STEP 3: Encryption using Genetic Algorithm Input: Intermediate Cipher (st): Niu]!Fuluhua n:=length of st st1:=substring(0,n/2)= Niu]!F st2:=substring(n/2,n)= uluhua Iteration 1: Cross Over Mutation: NluhuaF!]uiu Inversion(gst): u i u ] ! F a u h u l N (st) :N i u ] ! F u l u h u a Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=5 Iteration 2: Cross Over N I u ] ! F u l u h u a = : Mutation: NiuhuaF!]ulu Inversion(gst): u l u ] ! F a u h u i N (st) :N i u ] ! F u l u h u a Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=4 Iteration 3: Cross Over N i U ] ! F u l U h u a = Mutation: NiuhuaF!]ulu Inversion(gst): u l u ] ! F a u h u i N (st): N i u ] ! F u l u h u a Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=4
  • 4. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 175 N i u ] ! a u l u h u F N l u h u F u i u ] ! a N i u ] u a u l u h ! F N i u ] ! a u l u h u F N i u ] ! a u l u h u F U l u h u a Iteration 4: Cross Over N i u ] ! F u l u h u a = Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=2 So, fittest gst having minimum fit value is : u l u h u F a ! ] u i N C. Decryption STEP 1: Decryption using Genetic Algorithm Input: Final Cipher (st): u l u h u F a ! ] u i N Inversion: N i u ] ! a F u h u l u Mutation(mst): N i u ] ! a u l u h u F n:=length of st st1:=substring(0,n/2)= N i u ] ! a st2:=substring(n/2,n)= u l u h u F Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=4 Iteration 1: Crossover N i u ] ! a u l u h u F = Mutation: Niu]uaF!hulu Inversion(gst): u l u h ! F a u ] u i N (st):N i u ] ! F u l u h u a Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=3 Iteration 5: Cross Over gst= N l u h u F u i u ] ! a st= u l u h u F a ! ] u i N Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=5 Iteration 2: Crossover gst= N i u h u F u l u ] ! a st= u l u h u F a ! ] u i N Mutation: Niu]!aFuhulu Inversion(gst): u l u h u F a ! ] u i N (st):N i u ] ! F u l u h u a Iteration 3: Crossover = N I u h u F U L u ] ! a gst= N i u h u F u l u ] ! a st= u l u h u F a ! ] u i N Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=4 Iteration 4: Crossover = N i u ] ! a U l u h u F N i u ] u F u l u h ! a gst= N i u ] u F u l u h ! a when i=1 ie, ODD c: =c + ASCII(text [i] )- (m* key_arr[j])=ASCII(„N‟)-(1*7)=G when i=2 ie, EVEN c: = c+text[i]+ (m* key_arr[j])= N+(ASCII(„i‟)+(1*6))= Go st= u l u h u F a ! ] u i N Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=3
  • 5. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 176 N i u ] ! F u l u h u a Iteration 5: Crossover = N i u ] ! a u l u h u F gst= N i u ] ! F u l u h u a st= u l u h u F a ! ] u i N Fit value: Comparing st and gst to find out no. of characters whose position remained unchanged. fit(st,gst)=2 So fittest string(fst) having minimum fit value(2) = N i u ] ! F u l u h u a STEP 2: Decryption using Private Key: Input Private Key(x,y)=(14,3) Input intermediate cipher: Niu]!Fuluhua Read Public key(p,q)=(464,453) from Database x: = ((x-(y-1))*y) +y =((14-(3-1))*3)+3=39 p: = ((p-(q-1))*q) +q =((464-(453-1))*453)+453=5889 (x/y=p/q=13) and (x*q=p*y=17667) n: = x*q=39*453=17667 key_arr[]={7,6,6,7,1} m:=1 and c=”” Finally we get the intermediate cipher : Good Morning CONCLUSIONS In this work, a heuristic for network security in using genetic algorithm in computer networks has been proposed. Here an asymmetric cryptographic approach is implemented to ensure confidentiality in networks, which is again designed and implemented with genetic algorithm. ACKNOWLEDGEMENTS The authors of this research would like to thank B. P. Poddar Institute of Management and Technology for providing high- end computing laboratories during their research work. REFERENCES [1] Kartalopoulos, S.V. “Differentiating Data Security and Network Security”, IEEE Communications, 2008. ICC‟08. International Conference on Telecommun. Networking, Univ. of Oklahoma, Tulsa, OK, pp. 1469 – 1473, Issue Date: 19-23, May 2008. [2] Stamatios V. Kartalopoulos, Williams Professor in Telecommunications Networking, “Optical Network Security: Countermeasures in View of Channel Attacks”, Military Communications Conference, 2006. MILCOM 2006. IEEE , The University of Oklahoma, Washington, DC, ISBN: 1-4244-0617-X, pp. 1-5, Issue Date: 23-25 Oct, 2006. [3] Vulnerabilities and Security strategy for the Next Generation bandwidth Elastic Pon Stamatios V.Kartalopous,Di Jin Ece department,TCOM Graduate program , The University of Oklahoma , 4502 E.41 st Street,Tulsa,OK 74135 USA. [4] Cryptography and Network Security , by Forouzon. [5] An Introduction to Neural Network ,Kevin Gurney. BIOGRAPHIES Soumya Paul, Assoc. Professor and Head, Department of Computer Application in B. P. Poddar Institute of Management & Technology, Kolkata, has been in teaching and research for over 12 years. He holds a Master‟s Degree in Technology, Computer Application as well as in Mathematics and has gathered vast experiences in the same. He received his M.Sc. (Mathematics) from Visva Bharati University and stood 1st class 1st. He received MCA from National Institute of Technology, Rourkella and M. Tech (CSE) from AAI-Deemed University and pursuing Ph. D in Computer Science and Engineering. He served as a faculty member and visiting faculty member in various Institutes and Universities like RCCIIT, Visva Bharati University, University of Calcutta, Bardhaman University, West Bengal University of Technology etc. He has delivered numerous lectures across India in the field of his research interest, Optical Networks and Genetic Algorithms. He is an author/co-author of several published articles in International Journals and International Conferences. He has chaired an International Conference technically supported by IEEE communication. He has more than 15 research publications and currently Reviewer and Member, Editorial Board in many conferences and journals like International Journal of Data Modelling and Knowledge Management. Inadyuti Dutt has been in the field of academics for more than ten years and currently the Assistant Professor of Dept. of Computer Application, B.P.Poddar Institute of Management & Technology, West Bengal, India. Earlier she held various technical positions in National Informatics Centre, Kolkata , Semaphore Computing Network etc. She has earned Master‟s degree in Computer Application and currently pursuing her research in Computer Science & Engineering. She has more than 20 publications to her laurels and her research interest is specifically in the field of Optical Networking, Security and Genetic Algorithms. She has also been Member, Editorial Board in journal publications
  • 6. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 177 S.N. Chaudhuri, Director Kanad Institute of Engineering & Management, Mankar, Burdwan, West Bengal is a renowned Academician as well as a world famous Scientist. He has working experience for nearly 40 years in different National and International Institutions. As visiting Professor, he visited different foreign Universities. He is having a number of publications to his credit and his name has been included in who is Who Indian Personages.