找回密码
 立即注册
搜索

[经验杂志] 使用凯撒密码加密信息

[复制链接]
发表于 10-21 21:12:10 | 显示全部楼层 |阅读模式
【前言】
论坛坛友们大家好,我是练习时长
几个月的个人练习生蒟蒻
今天给大家带来凯撒密码的使用教程
(本来想做个软件的,结果老是卡bug,也懒得去修,就shift+delete了)
【什么是凯撒密码】
凯撒密码是一种简单,但是些许不安全的加密算法
一个密码学家,及时没有获取到密钥,也可以推算出原内容(因为原理简单)
【凯撒密码加密原理】

凯撒密码的加密原理如下:
例如,明文是
I'm a real ikun and a real homo

密钥是5
那么加密后的密文就是
N'r f wjfq npzs fsi f wjfq mtrt

原理就是把每个字母的ANSI码都加上5,就得到了密文
【新制作的凯撒密码加密器】
花五分钟写的答辩,将就着看吧
[C++] 纯文本查看 复制代码/*** JRCaeser Project* Copyright (c) 2023 Storm Lab.** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.** @author Github JuRuoqwq**/#define _CRT_SECURE_NO_WARNINGS#include <cstdio>#include <cstring>char * EncryptData(char* Source, size_t StrSize, int key){        for (int i = 0; i < StrSize; i++) {                Source = Source[i + key];        }        return Source;}char * DecryptData(char* Source, size_t StrSize, int key){        char dekey = key - (key * 2); //key的负数        for (int i = 0; i < StrSize; i++) {                Source = Source[i + dekey];        }        return Source;}int main(void){        printf(&quot;Mode(1.Encrypt,2.Decrypt) $ &quot;);        int mode;        int scan = scanf(&quot;%d&quot;, &mode);        printf(&quot;Key(> -128 && < 127) $ &quot;);        int key;        int scan1 = scanf(&quot;%d&quot;, &key);        printf(&quot;Data(Use underline links in spaces) $ &quot;);        char* data = new char[1000];        int scan2 = scanf(&quot;%s&quot;, data);        data = strcat(data, &quot;\0&quot;);        if (mode == 1) {                printf(&quot;Data is %s\n&quot;, EncryptData(data, strlen(data), key));                delete[] data;        }        else if (mode == 2) {                printf(&quot;Data is %s\n&quot;, DecryptData(data, strlen(data), key));                delete[] data;        }        else {                printf(&quot;Error Mode!&quot;);                return -1;        }        return 0;}
声明
1,本帖收录内容来源于系统采集或网友自主提交,不代表本网站立场!
2,本帖收录内容,仅供参考使用,本站不对其安全性,正确性等作出保证。
3,如您认为本帖收录内容侵犯了您的版权或者违规,请在右下角进行举报,发现直接删帖!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|wcbb导航网-属于年轻人的导航网-网站导航-素材导航论坛! ( 桂ICP备2024029389号-2 )|网站地图

快速回复 返回顶部 返回列表