码迷,mamicode.com
首页 > 其他好文 > 详细

[WeChall] Training: Crypto - Caesar I (Crypto, Training)

时间:2018-12-13 16:36:09      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:rev   iostream   题意   i++   name   challenge   pac   strlen   imageview   

Training: Crypto - Caesar I (Crypto, Training)
Crypto - Caesar I
As on most challenge sites, there are some beginner cryptos, and often you get started with the good old caesar cipher.
I welcome you to the WeChall style of these training challenges :)

Enjoy!
KYV HLZTB SIFNE WFO ALDGJ FMVI KYV CRQP UFX FW TRVJRI REU PFLI LEZHLV JFCLKZFE ZJ GSUESTWZREVX


  1. 由题意得,该密文为凯撒密码。
  • 凯撒密码
    技术分享图片
  1. 由于不知道移动了多少位 所以可以使用C++编写一段小程序来看看26种移动后情况
  • C++代码段
#include <iostream>
using namespace std;

int main()
{
    char str[]="KYV HLZTB SIFNE WFO ALDGJ FMVI KYV CRQP UFX FW TRVJRI REU PFLI LEZHLV JFCLKZFE ZJ GSUESTWZREVX";
    for(int j=0;j<26;j++)
    {
        for(int i=0;i<strlen(str);i++)
        {
            cout<<(char)((str[i]-‘A‘+j)%26+‘A‘);
        }
        cout<<endl;
    }
    return 0;
}
  1. Get flag
    可以看到一句明显的英文
    技术分享图片

注:每次刷新题目后所给的凯撒密码都不同 所以所得flag也将会不同

[WeChall] Training: Crypto - Caesar I (Crypto, Training)

标签:rev   iostream   题意   i++   name   challenge   pac   strlen   imageview   

原文地址:https://www.cnblogs.com/xiaomulei/p/10113966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!