Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 539 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 539 Bytes

C program for AES

I've tried to code a simplest implementation of Advanced Encryption Algorithm using C language. Currently the program takes a hardcoded 16 byte plaintext and key, and encrypts them.

It's 5:00 in the morning and I've just finished debugging this program (successfully).. so there might be chances of improvization

Suggestions for the same are always welcome. :-)

The users are supposed to call the AES_Encryption function and AES_Decryption methods to perform encryption and decryption respecitvely.

Happy Coding!