diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/block_cipher_mode_of_operation | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/glossary/block_cipher_mode_of_operation')
-rw-r--r-- | files/zh-cn/glossary/block_cipher_mode_of_operation/index.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/block_cipher_mode_of_operation/index.html b/files/zh-cn/glossary/block_cipher_mode_of_operation/index.html new file mode 100644 index 0000000000..ca33a357b8 --- /dev/null +++ b/files/zh-cn/glossary/block_cipher_mode_of_operation/index.html @@ -0,0 +1,8 @@ +--- +title: Block cipher mode of operation +slug: Glossary/Block_cipher_mode_of_operation +translation_of: Glossary/Block_cipher_mode_of_operation +--- +<p>块密码操作模式通常在上下文中称为“模式”,它指定应如何使用块密码来加密或解密长于块大小的消息。</p> + +<p>当前使用的大多数对称密钥算法都是块密码:这意味着它们一次加密一个块的数据。 每个块的大小是固定的,并由算法确定:例如,AES使用16字节的块。 块密码始终与一种模式一起使用,该模式指定了如何安全加密长度超过块大小的消息。 例如,AES是一个密码,而CTR,CBC和GCM都是模式。 使用不合适的模式或使用不正确的模式会完全破坏基础密码提供的安全性。</p> |