Skip to content

manuchandel/Advanced-Encryption-Standard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advanced-Encryption-Standard

This repository contains implementation of AES cipher, also commonly known as Rijndael.

Initialization

  • Place all source files in one directory and create a Main class to run program.
  • Program takes input two strings key and text.
  • Both Strings key and text are in hexadecimal format where each character represents half byte and has value between 0 and F .

AES aes= new AES(text,key);

Encryption

aes.excrypt();

Returns cipher text string in hexadecimal format.

Decryption

aes.decrypt();

Returns plain text string in hexadecimal format.

About

This repository contains implementation of AES also known as Rijndael.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages