1 / 5
文档名称:

交大网络与信息安全第二次作业.docx

格式:docx   大小:19KB   页数:5页
下载后只包含 1 个 DOCX 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

交大网络与信息安全第二次作业.docx

上传人:薇薇安 2021/8/3 文件大小:19 KB

下载得到文件列表

交大网络与信息安全第二次作业.docx

文档介绍

文档介绍:网络与信息安全第二次作业
ﻫAssign 2 - InetSec 加密
Assign 2 - InetSec Crypto ﻫSecret and Public Key Cryptography
密钥和公钥的密码技术
How many DES keys, on the average, encrypt a particular plaintext block to a particular ciphertext block? [Kaufman §3.3] (10 points)
一般来说,把一段详细的评述文字加密成一段加密文字,需要多少位DES 密码?
答:DSE一般采用56位长度的Key,所以总共有256种可能,这个数字大约是7.2X10的16次方。
Suppose the DES mangler function mapped every 32-bit value to zero, regardless of the value of its input. What function would DES then compute?[Kaufman §] (10 points)
假设这种DES切割函数就是不管输入什么值每32位的值都映射成0,那么DES是什么函数又是怎么计算的呢?
答:置换函数 Li=Ki-1;Ri=Li+1*F(Ri-1,Ki)
It is said that the initial and final permutations of all 64 bits in DES operation do not enhance the cryptographic strength of the encryption algorithm. Could you provide an explanation without using sophisticated mathematics?    (10 points)
据说,64位前后交换位置这种DES方法不能提高加密算法的密码强度。不使用复杂的数学理论你能提供一个解释来说明吗?
答:因为输出排列=(输入排列)-1,每一个排列都是一个有次序的Bryant-Tree排列,所以并没有安全上的改善。
Compute the number of 64-bit encryption operations performed for an n bit plaintext using CBC, k-bit OFB and k-bit CFB. Count all encryption operations, not just operations performed on the plaintext itself. Take as an example, n = 1024 and k = 32. (10 points)
计算64位的数字加密操作通过使用CBC,k位OFB和k位CFB把它变成一个n位的评述文字。计算所有的加密操作,这些操作不仅仅运行在这个评述文字本身。举个例子n=1024和k =32。
答:密文区段串接 (Cipher BlockChaining, CBC) 模式
k-位元密文反馈 (k-bits Cipher Feedback, CF