维吉尼亚密码和一次性密码本_密码学中的一次性密码

维吉尼亚密码和一次性密码本

The One-time Pad cipher is almost similar to the Vernam cipher, as, like the vernam cipher, this cipher technique also encrypts the plain text by working on the binary level of the text. The only difference between the two is that the length of the key in the Vernam Cipher must be less than or equal to the length of the plain text, whereas, in One-time pad Cipher, the length of the key must be equal to that of the Plain text. It cannot be less than that.

一次性Pad密码几乎与Vernam密码相似,因为像vernam密码一样 ,该密码技术还通过在文本的二进制级别上进行工作来对纯文本进行加密。 两者之间的唯一区别是,Vernam密码中的密钥长度必须小于或等于纯文本的长度,而在一次性填充密码中 ,密钥的长度必须等于纯文本的长度。纯文本。 它不能少于那个。

Now, talking about its characteristics and details, One-time pad cipher is a cipher in which we consider both the plain text and the key string in its binary form.

现在,在谈论其特征和细节时, 一次性填充密码是一种密码,在该密码中,我们同时考虑了纯文本和二进制形式的密钥字符串。

The following key points can be drawn for the One Time Pad cipher,

可以为One Time Pad密码得出以下要点,

  • The key chosen here is a string whose length must be equal to the length of the plain text.

    此处选择的键是一个字符串,其长度必须等于纯文本的长度。

  • The key can be either in string form or directly in binary form also.

    密钥可以是字符串形式,也可以是直接二进制形式。

  • It is a type of symmetric-key cryptography.

    它是一种对称密钥密码术 。

  • It is a type of poly-alphabetic cipher, being a part of the substitution cipher.

    它是多字母密码的一种,是替代密码的一部分。

加密过程 (Encryption Process)

  • Here, firstly, we convert both our plain text and the key string into its binary form.

    在这里,首先,我们将纯文本和密钥字符串都转换为二进制格式。

  • Perform XOR operation between the elements of the plain text with the respective elements of the ley string which hold the same positions.

    在纯文本的元素与ley字符串的各个元素保持相同位置之间执行XOR操作。

  • Therefore, the encryption on the plain text to convert it into ciphertext is performed as follows,

    因此,对纯文本进行加密以将其转换为密文的过程如下:

        E (Pi , Ki) =  Pi  (XOR)  Ki
    
    

解密过程 (Decryption Process)

The process of decrypting the ciphertext to convert it back into plain text is performed in the same way as the encryption process. Therefore, the formula for decryption of the text under Vernam cipher is as follows,

解密密文以将其转换回纯文本的过程以与加密过程相同的方式执行。 因此,在Vernam密码下解密文本的公式如下:

    D (Ci , Ki) =  Ci (XOR) Ki

示例问题 (Example Problem)

    Given Plain text: IF 
Key: 1101011 0101111

Convert the given plain text into cipher text...

将给定的纯文本转换为密文...

Solution:

解:

  • Convert the given plain text into its binary form,

    将给定的纯文本转换为其二进制形式,

        1001001 1000110
    
    
  • Check whether the length of the key if equal to that of the plain text,

    检查密钥的长度是否等于纯文本的长度,

        1 0 0 1 0 0 1   1 0 0 0 1 1 0
    1 1 0 1 0 1 1   0 1 0 1 1 1 1
    
    
  • Tape the elements of the plain text with the respective elements of the ley string which hold the same positions.

    将纯文本的元素与ley字符串的各个元素保持相同的位置。

    Example for position 1, we encrypt as follows,

    位置1的示例,我们加密如下,

        E( 1, 1 )   =  1  XOR  1
    = 0
    
    
  • Similarly, after performing the encryption for the whole plain text, we get the following results,

    同样,在对整个纯文本进行加密之后,我们得到以下结果,

        1 0 0 1 0 0 1   1 0 0 0 1 1 0
    1 1 0 1 0 1 1   0 1 0 1 1 1 1 
    ------------------------------
    0 1 0 0 0 1 0   1 1 0 1 0 0 1
    
    

Note: You can cross-check your answer by applying the decryption process over the ciphertext, and if it comes back to be the same as the plain text, then it means that our answer is correct.

注意:您可以通过对密文应用解密过程来交叉检查您的答案,如果它与纯文本相同,则表明我们的答案是正确的。

翻译自: https://www.includehelp.com/cryptography/one-time-pad-cipher.aspx

维吉尼亚密码和一次性密码本

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

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

相关文章

十一、纺织面料下架功能的实现

一、数据库 数据库仍用yy_textile表,前几篇博文都叙述过这里就不再叙述 在fiber_yy数据库下创建yy_textile表 初始数据库信息 二、页面 admin_undercarriage 三、代码实现 admin_undercarriage using System; using System.IO; using System.Data; using S…

svg和canvas的应用场景分析【转载】

原文地址:http://blogs.msdn.com/b/weizhong/archive/2011/07/16/canvas-svg.aspx 思考什么时候使用Canvas 和SVG wzhong 15 Jul 2011 9:07 PM 0HTML5 Canvas 和 SVG 是 IE9 中引入的两项令人激动的图形功能。上周在拉斯维加斯举办的 MIX11 大会对这两个功能进行了介…

【C++grammar】文件系统以及path类使用

目录1.文件系统概述1、关于路径2、如何将某个路径下的所有文件递归地找出来?2.路径类及操作1、path类的成员函数2、path类的非成员函数示例1:展示C17中的path对象的用法示例2:展示Path类中用于分解路径成分的函数示例3:展示path相…

scala hashmap_如何在Scala中将Hashmap转换为Map?

scala hashmapLets first understand what are maps and hashmaps? 首先让我们了解什么是map和hashmap ? map in Scala is a collection that stores its elements as key-value pairs, like a dictionary. Scala中的map是一个集合,将其元素存储为键值…

十二、所有功能实现效果演示

一、系统项目架构 Ⅰ,fiber_yy数据库下有五张表 yy_admin:管理员登录账号和密码 yy_textile:纺织面料数据信息 yy_textile_record:用户购买纺织面料信息所存储的面料流水信息 yy_user:用户登录注册信息 yy_user_reco…

行业软件之PTV微观软件VISSIM4.3 5.0 5.1 5.2 5.3 5.4下载和相关资料

他是干什么的:http://baike.baidu.com/view/3656765.htm 中国代理销售的公司的网址:辟途威交通科技(上海)有限公司 官网:http://www.ptvchina.cn/ 看看视频中软件的运行效果:http://v.youku.com/v_show/id_XMzExMjg1MDEy.html 如何…

一、单个神经元网络构建

一、本人使用编译器为Jupyter Notebook,tensorflow版本为1.13.1 import tensorflow as tf print(tf.__version__) """ 1.13.1 """二、训练单个神经元网络 x为-1.0, 0.0, 1.0, 2.0, 3.0, 4.0 y为-3.0, -1.0, 1.0, 3.0, 5.0, 7.0 人用…

ruby 生成随机字符串_Ruby程序生成随机数

ruby 生成随机字符串产生随机数 (Generating random number) The task is to generate and print random number. 任务是生成并打印随机数。 Generating random numbers means that any number can be provided to you which is not dependent on any pre-specified condition…

leetcode 322. 零钱兑换 思考分析

目录1、题目2、思路分析3、参考链接1、题目 给定不同面额的硬币 coins 和一个总金额 amount。编写一个函数来计算可以凑成总金额所需的最少的硬币个数。如果没有任何一种硬币组合能组成总金额,返回 -1。 你可以认为每种硬币的数量是无限的。 提示: 1 …

linux上的英文字体monospace可以在windows用吗?

linux的字体都是开源的,应该可以官方下载本地下载转载于:https://www.cnblogs.com/52linux/archive/2012/03/14/2396103.html

Flash Builder 创建CSS

1.global 选择器将样式应用于所有控件 在 Flash Builder 中创建新MXML 文件并切换到设计模式 属性视图右侧的外观视图可更改外观 Flash Builder 自动创建CSS 文件 CSS 文件有2 个命名空间: s 指 Spark 组件 mx 指 MX 组件 1. Global 与Application 选择器 global …

ruby打印_Ruby程序打印数字的力量

ruby打印Ruby中数字的幂 (Power of a number in Ruby) The task to develop a program that prints power of a number in Ruby programming language. 开发可以用Ruby编程语言打印数字幂的程序的任务。 If we want to calculate the power of a number manually then we have…

二、训练fashion_mnist数据集

一、加载fashion_mnist数据集 fashion_mnist数据集中数据为28*28大小的10分类衣物数据集 其中训练集60000张,测试集10000张 from tensorflow import keras import tensorflow as tf import matplotlib.pyplot as plt import numpy as npfashion_mnist keras.data…

jquerymobile 切换页面时候闪烁问题

https://github.com/jquery/jquery-mobile/commit/acbec71e29b6acec6cd2087e84e8434fecc0053f 可以修改css好像是个bug -4,9 4,10 * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.*/.spin {--webkit-animation-name: spin;--webkit-an…

二分法:两个有序数组长度为N,找到第N、N+1大的数

题目 两个有序数组长度为N,找到第N、N1大的数 思路1:双指针,O(N)复杂度 简述思路: 如果当前A指针指向的数组A的内容小于B指针指向的数组B的内容,那么A指针往右移动,然后nums(当前已经遍历过的数字个数)也…

Javascript -- In

http://www.caveofprogramming.com/articles/javascript-2/javascript-in-using-the-in-operator-to-iterate-through-arrays-and-objects/ http://msdn.microsoft.com/en-us/library/ie/9k25hbz2(vvs.94).aspx转载于:https://www.cnblogs.com/daishuguang/p/3392310.html

三、自动终止训练

有时候,当模型损失函数值预期的效果时,就可以结束训练了,一方面节约时间,另一方面防止过拟合 此时,设置损失函数值小于0.4,训练停止 from tensorflow import keras import tensorflow as tf import matplo…

矩阵形状| 使用Python的线性代数

Prerequisite: Linear Algebra | Defining a Matrix 先决条件: 线性代数| 定义矩阵 In the python code, we will add two Matrices. We can add two Matrices only and only if both the matrices have the same dimensions. Therefore, knowing the dimensions o…

[数据库]oracle客户端连服务器错误

昨天晚上和今天上午用11g客户端连同事10g服务器,报错: The Network Adapter could not establish the connection 检查尝试了好多次都没好。 用程序连,依旧是报这个错,所以一查就解决了! 参考:http://apps…

ASP.NET 抓取网页内容

(转)ASP.NET 抓取网页内容 ASP.NET 抓取网页内容-文字 ASP.NET 中抓取网页内容是非常方便的,而其中更是解决了 ASP 中困扰我们的编码问题。 需要三个类:WebRequest、WebResponse、StreamReader。 WebRequest、WebRespo…