赞
踩
凯撒加密是一种简单的替换加密方法,该方法把一条消息中的每个字母用字母表中固定距离之后的那个字母代替。(如果超越了字母Z,会绕道字母表的起始位置。例如,如果每个字母都用字母表中两个位置之后的字母代替,那么Y就会被替换为A,Z就会被替换为B。)这个加密方法是以罗马共和时期恺撒的名字命名的,当年恺撒曾用此方法与其将军们进行联系。
加密偏移量由用户输入;
#include <string.h> #include<stdlib.h> #include<stdio.h> //加密 void Encryption(char* filePath, char* plaintext, int move) { for (int i = 0; i < (int)strlen(plaintext); i++) { if (plaintext[i] >= 'A' && plaintext[i] <= 'Z') { plaintext[i] = ((plaintext[i] - 'A') + move) % 26 + 'A'; } else if (plaintext[i] >= 'a' && plaintext[i] <= 'z') { plaintext[i] = ((plaintext[i] - 'a') + move)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。