标签:
AES also known as Rijndael (Vincent Rijmen & Joan Daemen), For AES NIST selected three members of the Rijndael family, each with a block size of 128-bits, but three different key lengths:128, 192, 256 bits.
AES is now used worldwide. It supersedes the Data Encryption Standard(DES) which was published in 1977. The algorithm described by AES is a symmetric-key algorithm, meaning the same key is used for both encrypting and decrypting the data.
The Advanced Encryption Standard (AES) is defined in each of:
Description of the cipher
AES operates on a 4×4 column-major order matrix of bytes, termed the state, although some versions of Rijndael have a larger block size and have additional columns in the state. Most AES calculations are done in a special finite field.
The key size used for an AES cipher specifies the number of repetitions of transformation rounds that convert the input, called the plaintext, into the final output, called the ciphertext. The number of cycles of repetition are as follows:
Each round consists of several processing steps, each containing four similar but different stages, including one that depends on the encryption key itself. A set of reverse rounds are applied to transform ciphertext back into the original plaintext using the same encryption key.
AES(Advanced Encryption Standard)
标签:
原文地址:http://www.cnblogs.com/elewei/p/4793664.html