mcq 队列_MCQ | 密码学中作为IDEA,DES,AES,RSA的块密码

mcq 队列

1) In the AES-128 algorithm there are mainly __________ similar rounds and _________ round is different from other round.

1)在AES-128算法中,主要有__________个相似的回合,而_________个回合与其他回合不同。

  1. 5 similar rounds having 2 pair ; every alternate

    5个类似的回合有2对; 每隔一个

  2. 9 ; the last

    9; 最后

  3. 8 ; the first and last

    8; 第一个和最后一个

  4. 10 ; no

    10; 没有

Answer: b. 9; the last

答案: b。 9; 最后

Explanation:

说明:

Basically, in the AES-128 there are 9 rounds and the last round is different from other rounds.

基本上,在AES-128中有9个回合,最后一个回合与其他回合不同。

2) Which of the following modes of operation in DES is used for operating?

2)DES中以下哪种操作模式用于操作?

  1. Cipher Feedback Mode (CFB)

    密码反馈模式(CFB)

  2. Cipher Block chaining (CBC)

    密码块链接(CBC)

  3. Electronic code book (ECB)

    电子密码书(ECB)

  4. Output Feedback Modes (OFB)

    输出反馈模式(OFB)

Answer: c. Electronic code book (ECB)

答: c。 电子密码书(ECB)

Explanation:

说明:

Mainly, the Electronic codebook mode is used for operating on short data as the same key is used for each block in this algorithm. Thus convert in Plain Text lead to repetitions in Cipher Text in cryptography.

主要是,电子密码本模式用于对短数据进行操作,因为此算法中的每个块都使用相同的键。 因此,以纯文本格式转换会导致密码学中的密文重复。



3) Using Rivest, Shamir, Adleman cryptosystem with p=7 and q=9. Encrypt M=24 to find ciphertext. The Ciphertext is:

3)使用p = 7和q = 9的Rivest,Shamir,Adleman密码系统。 加密M = 24以找到密文。 密文是:

  1. 42

    42

  2. 93

    93

  3. 114

    114

  4. 103

    103

Answer: c. 114

答: c。 114

Explanation:

说明:

    Calculate n = p × q = 63
Phi(n)=(p-1) x (q-1)=48
Let e=5 , where gcd(e,phi(n))=1
Plaintext M = 24
Ciphertext = C ≡ M^e (mod n)
= 24^5 mod 63 = 7962624 mod 161
Ciphertext transmitted = 114.



4) International Data Encryption Algorithm (IDEA) was developed by

4)国际数据加密算法(IDEA)由

  1. Xuejia Lai and James Massey

    赖雪佳和詹姆斯·梅西

  2. Xuejia Lai and Bruce Schneier

    赖雪佳和布鲁斯·施耐尔

  3. Xuejia Lai and Carlisle Adams

    赖雪佳和卡莱尔·亚当斯

  4. Xuejia Lai and Stafford Tavares

    赖雪佳和斯塔福德·塔瓦雷斯

Answer: a. Xuejia Lai and James Massey

答: 赖雪佳和詹姆斯·梅西

Explanation:

说明:

It is a symmetric key block cipher designed by James Massey of ETH Zurich and Xuejia Lai and in 1991 it firstly described it.

它是ETH Zurich的James Massey和Xuejia Lai设计的对称密钥分组密码,它于1991年首次对其进行了描述。



5) When do we compare the AES with DES, which of the following functions from DES does not have an equivalent AES function in cryptography?

5)我们何时将AES与DES进行比较,以下DES中的以下哪个函数在密码学中没有等效的AES函数?

  1. f function

    f功能

  2. permutation p

    排列p

  3. swapping of halves

    交换一半

  4. xor of subkey with function f

    函数f的子项的异或

Answer: c. swapping of halves

答: c。 交换一半

Explanation:

说明:

Mainly, there is no equivalent to swapping of halves in the AES algorithm in cryptography.

主要地,在密码学中,AES算法中不存在等同于交换一半的问题。



翻译自: https://www.includehelp.com/cryptography/mcq-block-cipher-as-idea-des-aes-rsa-in-cryptography.aspx

mcq 队列

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380245.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Cookie存取和IE页面缓存的问题

最近老是发现在IE里会有Cookie的问题,如IE下面无法登出,或无法登录,或者登录后信息却无法取到,而Firefox下面一直是通过的,都试过好多次了,今天终于找回的主要的原因;Cookie的问题:首…

数组(一维、二维)

1, 动态初始化: int [] arr new int [5] 如果直接输出arr; System.out.print(arr); 结果为: [I13b64eb [:表示一维数组,几个就代表几维数组; I:表…

Extjs TextField扩展

Extjs.form.TextField的默认在输入框后面是不能加入文字。在网上找到此方法以备查用。 /** * 重写textfield,为其多加一个属性sideText,在文本框后面加html * author rms * create 2011-08-17*/Ext.override(Ext.form.TextField, { sideText : , onRender : functi…

远控免杀专题10--TheFatRat免杀

0x01 免杀能力一览表 几点说明: 1、上表中标识 √ 说明相应杀毒软件未检测出病毒,也就是代表了Bypass。 2、为了更好的对比效果,大部分测试payload均使用msf的windows/meterperter/reverse_tcp模块生成。 3、由于本机测试时只是安装了360全…

c++语句switch语句_错误:案例标签不在C中的switch语句内

c语句switch语句The error: case label not within a switch statement occurs in C language with switch case statement, when switch (variable/value) statement is terminated by the semicolon (;). 错误:当switch(变量/值)语句由分号( ; )终止时&#xff0c…

远控免杀专题11-Avoidz免杀

0x01 免杀能力一查表 几点说明: 1、上表中标识 √ 说明相应杀毒软件未检测出病毒,也就是代表了Bypass。 2、为了更好的对比效果,大部分测试payload均使用msf的windows/meterperter/reverse_tcp模块生成。 3、由于本机测试时只是安装了360全…

使用方法实现数组的对调与输出

package asdasqq; import java.util.*; public class asdasdad { public static void main(String[] args) { Scanner wsqnew Scanner(System.in); int qwsq.nextInt();//输入q,表示数组arr的大小; int [] arrnew int [q];//定义一个整型数组arr&a…

CAP与流密码

CAP 中流密码的操作 1 、Cipher 下拉菜单中选中Stream 2,设置LFSR 参数,设置好参数后点击Set Key LFSR Size:表示有几个寄存器 Initial key:寄存器的初始状态,每个寄存器初始值是0或1,放在一起转化成十六进制 Feedbac…

高性能Javascript 用局部变量缓存集合元素

document.images; 由于集合元素是处于实时状态的实时存在,它与底层dom连接着。在遍历它的每一个属性或length时都会带来查找,从而性能开销很高。 这里是有关集合元素在循环处理时的优化原则 一、用变量缓存集合元素 二、在循环在缓存集合length属性 三、在循环中用变…

QTP中使用描述性编程

我们简单介绍一下有关功能测试的基本方法,这实际上对于所有自动化功能测试产品来说都是一样的。一般情况下,用QTP来进行功能测试的基本方法主要包括三个主要阶段: 1、创建测试或组建 首先可以通过在应用程序或网站上录制会话,或…

字符数组的查找法

package asdasqq; import java.util.*; public class suoying { public static void main(String[] args) { Scanner wsqnew Scanner(System.in); System.out.print(“请输入对应的星期范围在一~日:”); int week wsq.nextInt(); System.out.print(getWeek(…

结构和其他数据形式

0x01 结构声明 结构声明(structure declaration)描述了一个结构的组织布局。 struct book{char title[MAXTITL];char author[MAXAUTL];float value; };该声明描述了一个由两个字符数组和一个float类型变量组成的结构。该声明并未创建实际的数据对象&am…

Java StringBuffer char charAt(int index)方法与示例

StringBuffer类char charAt(int index) (StringBuffer Class char charAt(int index)) This method is available in package java.lang.StringBuffer.charAt(int index). 软件包java.lang.StringBuffer.charAt(int index)中提供了此方法。 This method is used to return the …

Form验证

代码写 N 久了,总想写得别的。这不,上头说在整合两个项目,做成单一登录(Single Sign On),也有人称之为“单点登录”。查阅相关文档后,终于实现了,现在把它拿出来与大家一起分享。或许…

添加LinkServer的两句代码

sp_addlinkedserver linkserver,,SQLOLEDB,linkserver.comsp_addlinkedsrvlogin linkserver,false,null,sa,asdf第一句是添加一个名字为linkserver的链接服务器 地址是linkserver.com第二句是针对第一句添加的Linkserver添加一个访问帐号两句不能同时执行 要第一句执行成功后执…

数组的基本查找

package asdasqq; import java.util.*; public class jibenchazhao { public static void main(String[] args) { int [] arr{11,22,33,44,55,66,77}; Scanner wsqnew Scanner(System.in); int qwsq.nextInt();//输入q,即为查找的数; int index g…

Cobaltstrike4.0系列教程(一)----简介与安装

0x01-Cobaltstrike简介 Cobalt Strike是一款美国Red Team开发的渗透测试神器,常被业界人称为CS。这款神器许多大佬们都已经玩的很6,我一个菜鸡玩的略有心得,因此写一下自己的Cobaltstrike系列文章,希望给各位一点帮助。 最近这个…

c ++类成员函数_仅使用C ++创建具有公共数据成员的类

c 类成员函数Let’s understand 让我们来了解 What is data member? 什么是数据成员? Any variable declared inside the class in known as data member of the class. 在类内部声明的任何变量,称为类的“数据成员”。 What is public data member…

转:php.ini中文版

[PHP] ; PHP还是一个不断发展的工具,其功能还在不断地删减 ; 而php.ini的设置更改可以反映出相当的变化, ; 在使用新的PHP版本前,研究一下php.ini会有好处的 ;;;;;;;;;;;;;;;;;;; ; 关于这个文件 ; ;;;;;;;;;;;;;;;;;;; ; 这个文件控制了PHP许…

qt 试用 (3)配置编译源代码及调试

qt 试用 (3)配置编译源代码及调试qt creater是一个集成ide,像vc一样容易使用,所以首先下载带qt creater的qt sdk Offline installer - 1.4 GB http://qt.nokia.com/downloads/sdk-windows-cpp-offline这里的lib没有pdb和源代码…