The challenge is to display the top five probable plain texts which could be decrypted from the supplied monoalphabetic cypher utilizing the letter frequency attack from a string Str with size K representing the given monoalphabetic cypher.
Let us see what exactly is frequency attack.
频率分析的基础是确信特定的字母和字母组合在任何给定的书面语言部分中以不同的频率出现。此外,事实上,该语言的每个样本在字母分布上都有一个共同的模式。为了更清楚地说明,
英语字母表有26个字母,但并不是所有字母在书面英语中使用频率都相同。某些字母的使用频率是不同的。例如,如果你查看一本书或报纸上的字母,你会注意到字母E、T、A和O在英语单词中出现得非常频繁。然而,英语文本很少使用字母J、X、Q或Z。这个事实可以用来解密维吉尼亚密码的信息。术语"频率分析"就是指这种方法。
Each letter found in the plaintext is substituted with a different letter in a basic substitution cypher, and any given character in its plaintext is perpetually changed to an identical letter in the text of the cypher. A ciphertext message with several repetitions of the letter Y, for instance, would imply to the cryptanalyst that Y stands in for the letter a if every instance of the letter a are converted to the letter X.
示例示例1
Let us take string T,
按照英文字母在英语字母表中的降序连接形成的字符串。
String T=ETAOINSHRDLCUMWFGYPBVKJXQZ” Given string Str = "SGHR HR SGD BNCD";
Output: THIS IS THE CODE FTUE UE FTQ OAPQ LZAK AK LZW UGVW PDEO EO PDA YKZA IWXH XH IWT RDST
问题陈述
实现一个程序,对单字母替代密码进行字母频率攻击。
Solution Approach
In Order to perform a letter frequency attack on a monoalphabetic substitution cipher, we take the following methodology.
The approach to solve this problem and to perform a letter frequency attack on a monoalphabetic substitution cipher is by applying frequency analysis.
One widely-known technique or a practice of breaking ciphertext is nothing but a frequency analysis. It is founded on research into how often and regular different letters or groupings of letters appear in ciphertexts. A variety of letters or alphabets are used at varying rates across all languages.
For example, take the word "APPLE". The frequency of the letter "A" is 1 since it is occured only one time, similarly the frequency of the letter "L" is 1 and the frequency of the letter "E" is also 1. But the frequency of the letter "P" is 2 since it is repeated two times.
这就是我们找到字母频率的方法。
考虑一下在典型的英文文本中每个字母出现的频率。最常出现的字母是E,其次是T,然后是A,依此类推,如果我们按照从高频到低频的顺序排列这些字母 −
"ETAOINSHRDLCUMWFGYPBVKJXQZ" 是按频率排序的完整字母列表。
Algorithm
在单字母替代密码上执行字母频率攻击的算法如下所示
第一步 − 开始
第二步 - 通过使用频率攻击或分析的方法定义解密单字母替代密码的函数
步骤 3 − 存储最终的 5 个可行的解密明文
第四步 − 存储密文中每个字母的频率
步骤 5 - 遍历字符串 Str
步骤 6 − 迭代一个范围为 [0, 5]
Step 7 − Iterate over a range of [0, 26]
第8步 - 定义一个临时字符串"cur",以便逐个或在当前时间创建一个明文
Step 9 − Now create the ith plaintext by making use of the calculated shift
第10步 − 将密码的第T个字母向右移动x个位置
第11步 - 将第k个计算出的字母添加到临时字符串cur中
Step 12 − Print the output as the generated 5 possible plaintexts.
步骤 13 − 停止
Example: C Program
以下是C程序实现的上述算法,用于对单字母替换密码进行字母频率攻击。
#include <stdio.h> #include <string.h> // Define a function to decrypt given monoalphabetic substitution cipher by implementing the method of frequency analysis or an attack void printTheString(char Str[], int K){ // this stores the final 5 feasible plaintext //which are deciphered char ptext[5][K+1]; // the frequency of every letter in the // cipher text is stored int fre[26] = { 0 }; // The letter frequency of the cipher text is stored in the order of descendence int freSorted[26]; // this stores the used alphabet int Used[26] = { 0 }; // Traversing the given string named Str for (int i = 0; i < K; i++) { if (Str[i] != ' ') { fre[Str[i] - 'A']++; } } // Copying the array of frequency for (int i = 0; i < 26; i++) { freSorted[i] = fre[i]; } //by concatenating the english letters in //decreasing frequency in the english alphabet , the string T is //obtained char T[] = "ETAOINSHRDLCUMWFGYPBVKJXQZ"; // Sorting the array in the order of descendence for (int i = 0; i < 26; i++) { for (int j = i + 1; j < 26; j++) { if (freSorted[j] > freSorted[i]) { int temp = freSorted[i]; freSorted[i] = freSorted[j]; freSorted[j] = temp; } } } // Iterating in the range between [0, 5] for (int i = 0; i < 5; i++) { int ch = -1; // Iterating in the range between [0, 26] for (int m = 0; m < 26; m++) { if (freSorted[i] == fre[m] && Used[m] == 0) { Used[m] = 1; ch = m; break; } } if (ch == -1) break; // here numerical equivalent of letter is stored ith index of array letter_frequency int x = T[i] - 'A'; // now probable shift is calculated in the monoalphabetic cipher x = x - ch; // defining a temporary string cur to create one plaintext at a time or at the current time char cur[K+1]; // ith plaintext is generated by making use of the shift calculated for (int T = 0; T < K; T++) { // whitespaces is inserted without any //change if (Str[T] == ' ') { cur[T] = ' '; continue; } // Shifting the Tth cipher letter by x we get int y = Str[T] - 'A'; y =y+x; if (y < 0) y =y+ 26; if (y > 25) y -=26; // Adding the kth calculated letter to the temporary string cur cur[T] = 'A' + y; } cur[K] = '\0'; // The ith feasible plaintext is printed printf("%s\n", cur); } } int main(){ char Str[] = "SGHR HR SGD BNCD"; int K = strlen(Str); printTheString(Str, K); return 0; }
输出
THIS IS THE CODE FTUE UE FTQ OAPQ LZAK AK LZW UGVW PDEO EO PDA YKZA IWXH XH IWT RDST
结论
Likewise, we can obtain a solution to perform a letter frequency attack on a monoalphabetic substitution cipher.
在本文中,我们解决了获取程序来执行对单字母替换密码进行字母频率攻击的挑战。
在这里提供了C编程代码以及在单字母替换密码上执行字母频率攻击的算法。
위 내용은 문자 빈도 공격을 위한 단일 문자 대체 암호 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

C#과 C의 성능 차이는 주로 실행 속도 및 리소스 관리에 반영됩니다. 1) C는 일반적으로 하드웨어에 더 가깝고 쓰레기 수집과 같은 추가 오버 헤드가 없기 때문에 수치 계산 및 문자열 작업에서 더 잘 수행됩니다. 2) C#은 다중 스레드 프로그래밍에서 더 간결하지만 성능은 C보다 약간 열등합니다. 3) 선택해야 할 언어는 프로젝트 요구 사항 및 팀 기술 스택을 기반으로 결정해야합니다.

c is nontdying; it'sevolving.1) c COMINGDUETOITSTIONTIVENICICICICINICE INPERFORMICALEPPLICATION.2) thelugageIscontinuousUllyUpdated, witcentfeatureslikemodulesandCoroutinestoimproveusActionalance.3) despitechallen

C는 현대 세계에서 널리 사용되고 중요합니다. 1) 게임 개발에서 C는 Unrealengine 및 Unity와 같은 고성능 및 다형성에 널리 사용됩니다. 2) 금융 거래 시스템에서 C의 낮은 대기 시간과 높은 처리량은 고주파 거래 및 실시간 데이터 분석에 적합한 첫 번째 선택입니다.

C : Tinyxml-2, Pugixml, XERCES-C 및 RapidXML에는 4 개의 일반적으로 사용되는 XML 라이브러리가 있습니다. 1. TINYXML-2는 자원이 제한적이고 경량이지만 제한된 기능을 가진 환경에 적합합니다. 2. PugixML은 빠르며 복잡한 XML 구조에 적합한 XPath 쿼리를 지원합니다. 3.xerces-c는 강력하고 DOM 및 SAX 해상도를 지원하며 복잡한 처리에 적합합니다. 4. RapidXML은 성능에 중점을두고 매우 빠르게 구문 분석하지만 XPath 쿼리를 지원하지는 않습니다.

C는 XML과 타사 라이브러리 (예 : TinyXML, Pugixml, Xerces-C)와 상호 작용합니다. 1) 라이브러리를 사용하여 XML 파일을 구문 분석하고 C- 처리 가능한 데이터 구조로 변환하십시오. 2) XML을 생성 할 때 C 데이터 구조를 XML 형식으로 변환하십시오. 3) 실제 애플리케이션에서 XML은 종종 구성 파일 및 데이터 교환에 사용되어 개발 효율성을 향상시킵니다.

C#과 C의 주요 차이점은 구문, 성능 및 응용 프로그램 시나리오입니다. 1) C# 구문은 더 간결하고 쓰레기 수집을 지원하며 .NET 프레임 워크 개발에 적합합니다. 2) C는 성능이 높고 시스템 프로그래밍 및 게임 개발에 종종 사용되는 수동 메모리 관리가 필요합니다.

C#과 C의 역사와 진화는 독특하며 미래의 전망도 다릅니다. 1.C는 1983 년 Bjarnestroustrup에 의해 발명되어 객체 지향 프로그래밍을 C 언어에 소개했습니다. Evolution 프로세스에는 자동 키워드 소개 및 Lambda Expressions 소개 C 11, C 20 도입 개념 및 코 루틴과 같은 여러 표준화가 포함되며 향후 성능 및 시스템 수준 프로그래밍에 중점을 둘 것입니다. 2.C#은 2000 년 Microsoft에 의해 출시되었으며 C와 Java의 장점을 결합하여 진화는 단순성과 생산성에 중점을 둡니다. 예를 들어, C#2.0은 제네릭과 C#5.0 도입 된 비동기 프로그래밍을 소개했으며, 이는 향후 개발자의 생산성 및 클라우드 컴퓨팅에 중점을 둘 것입니다.

C# 및 C 및 개발자 경험의 학습 곡선에는 상당한 차이가 있습니다. 1) C#의 학습 곡선은 비교적 평평하며 빠른 개발 및 기업 수준의 응용 프로그램에 적합합니다. 2) C의 학습 곡선은 가파르고 고성능 및 저수준 제어 시나리오에 적합합니다.


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

Eclipse용 SAP NetWeaver 서버 어댑터
Eclipse를 SAP NetWeaver 애플리케이션 서버와 통합합니다.

DVWA
DVWA(Damn Vulnerable Web App)는 매우 취약한 PHP/MySQL 웹 애플리케이션입니다. 주요 목표는 보안 전문가가 법적 환경에서 자신의 기술과 도구를 테스트하고, 웹 개발자가 웹 응용 프로그램 보안 프로세스를 더 잘 이해할 수 있도록 돕고, 교사/학생이 교실 환경 웹 응용 프로그램에서 가르치고 배울 수 있도록 돕는 것입니다. 보안. DVWA의 목표는 다양한 난이도의 간단하고 간단한 인터페이스를 통해 가장 일반적인 웹 취약점 중 일부를 연습하는 것입니다. 이 소프트웨어는

에디트플러스 중국어 크랙 버전
작은 크기, 구문 강조, 코드 프롬프트 기능을 지원하지 않음

PhpStorm 맥 버전
최신(2018.2.1) 전문 PHP 통합 개발 도구

SublimeText3 Linux 새 버전
SublimeText3 Linux 최신 버전
