Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (1)
Aes encryption
no vote
this is a encryption algorithm in C++ of AES . AES stands for Advanced Encryption Standard. It is basically encryption decryption algorithm for data.Encryption converts raw input data into encrypted data. Decryption does the reverse.AES supports keys of length 128, 192 and 256 bits. This cryptographic key is used to encrypt and decrypt datawhich is in blocks of 128 bits in length. The 128 bit AES algorithm is in use everywhere to protect the electronic transactions.The AES core designed by companies contain both Encryption and Decryption modules which can run on single core.Typically AES IP Core supports two modes viz. OFB and CTR (i.e. counter) mode. CTR MODE stands for Counter mode. In this type of mode following steps are implemented in encryption process.1. Input to the encryption core is output of counter. Initialization vector is needed for counter.2. XOR of input data and output of encryption module is performed. This XOR ed data is the cyphertext data w
aaakkk
2014-11-07
0
1
No more~