readme.txt
来自「AES, 即Advanced Encryption Standard高级加密标准」· 文本 代码 · 共 35 行
TXT
35 行
AESCrypt File Format Description
Items in quotes are a literal string. Words outside of quotes
are a textual description of the contents. Fixed-valued octets are
written in hexidecimal form (e.g., 0x01).
The AESCrypt version 0 file format is as follows.
3 Octets - 'AES'
1 Octet - 0x00 (Version)
1 Octet - File size modulo 16 in least significant bit positions
16 Octets - Initialization Vector (IV)
nn Octets - Encrypted message (2^64 octets max)
32 Octets - HMAC
Thus, the footprint of the file is at least 53 octets.
The AESCrypt version 1 file format is as follows.
3 Octets - 'AES'
1 Octet - 0x01 (Version)
1 Octet - Reserved
16 Octets - Initialization Vector (IV) used for encrypting the
IV and symmetric key that is actually used to encrypt
the bulk of the plaintext file.
48 Octets - Encrypted IV and 256-bit AES key used to encrypt the
bulk of the file
16 octets - Initialization Vector
32 octets - encryption key
32 Octets - HMAC
nn Octets - Encrypted message (2^64 octets max)
1 Octet - File size modulo 16 in least significant bit positions
32 Octets - HMAC
Thus, the footprint of the file is at least 134 octets.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?