- 1、本文档共16页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Written By: Adam Berent
Advanced Encryption Standard by Example
V.1.5
1.0 Preface
The following document provides a detailed and easy to understand explanation of the implementation of the AES
(RIJNDAEL) encryption algorithm. The purpose of this paper is to give developers with little or no knowledge of
cryptography the ability to implement AES.
2.0 Terminology
There are terms that are frequently used throughout this paper that need to be clarified.
Block: AES is a block cipher. This means that the number of bytes that it encrypts is fixed. AES can currently encrypt
blocks of 16 bytes at a time; no other block sizes are presently a part of the AES standard. If the bytes being
encrypted are larger than the specified block then AES is executed concurrently. This also means that AES has to
encrypt a minimum of 16 bytes. If the plain text is smaller than 16 bytes then it must be padded.
Simply said the block is a reference to the bytes that are processed by the algorithm.
State: Defines the current condition (state) of the block. That is the block of bytes that are currently being worked on. The
state starts off being equal to the block, however it changes as each round of the algorithms executes. Plainly said
this is the block in progress.
XOR Refers to the bitwise operator Exclusive Or. XOR operates on the individual bits in a byte in the following way:
0 XOR 0 = 0
1 XOR 0 = 1
1 XOR 1 = 0
0 XOR 1 = 1
For example the Hex digits D4 XOR FF
XOR 1111
您可能关注的文档
- 55the giving tree英文文献资料.pdf
- argon cross section英文文献资料.pdf
- China Medicine(Mogan Stanly)英文文献资料.pdf
- Combined spinal–epidural techniques英文文献资料.pdf
- Crafty Syntax Live Help英文文献资料.pdf
- Crude_Palm_Oil_Price_Forecasting_Box-Jenkins_Approach[1]英文文献资料.pdf
- Effective Corner Matching英文文献资料.pdf
- Evaluation, Calibration, and Verification of a Reinforced Concrete BeamColumn Joint Model英文文献资料.pdf
- Generalized Method of Moments英文文献资料.pdf
- How to Write a Research Proposal英文文献资料.pdf
文档评论(0)