凯撒密码用c语言实现

凯撒密码是历史上最简单的加密方式之一,它基于一种替换方法,即将明文中的每个字母都替换成它之后的第 N 个字母。下面是一个简单的 C 语言实现:

#include <stdio.h>
#include <string.h>

// 加密函数,plaintext 为明文,key 为加密密钥
void encrypt(char plaintext[], int key) {
    int len = strlen(plaintext);
    for (int i = 0; i < len; i++) {
        if (plaintext[i] >= 'a' && plaintext[i] <= 'z') {
            // 处理小写字母
            plaintext[i] = (plaintext[i] - 'a' + key) % 26 + 'a';
        } else if (plaintext[i] >= 'A' && plaintext[i] <= 'Z') {
            // 处理大写字母
            plaintext[i] = (plaintext[i] - 'A' + key) % 26 + 'A';
        }
    }
}

// 解密函数,ciphertext 为密文,key 为加密密钥
void decrypt(char ciphertext[], int key) {
    int len = strlen(ciphertext);
    for (int i = 0; i < len; i++) {
        if (ciphertext[i] >= 'a' && ciphertext[i] <= 'z') {
            // 处理小写字母
            ciphertext[i] = (ciphertext[i] - 'a' - key + 26) % 26 + 'a';
        } else if (ciphertext[i] >= 'A' && ciphertext[i] <= 'Z') {
            // 处理大写字母
            ciphertext[i] = (ciphertext[i] - 'A' - key + 26) % 26 + 'A';;
        }
    }
}

int main() {
    char plaintext[100], ciphertext[100];
    int key;
    
    // 读取明文和密钥
    printf("Enter plaintext: ");
    gets(plaintext);
    printf("Enter key: ");
    scanf("%d", &key);
    
    // 加密
    strcpy(ciphertext, plaintext);
    encrypt(ciphertext, key);
    printf("Ciphertext: %s\n", ciphertext);
    
    // 解密
    decrypt(ciphertext, key);
    printf("Decrypted plaintext: %s\n", ciphertext);
    
    return 0;
}

在这个例子中,我们将用户输入的明文和密钥传递给 encrypt 函数,该函数将加密结果存储在了 ciphertext 数组中,我们再将其打印出来。然后,我们调用 decrypt 函数并将 ciphertext 和密钥作为参数传递给它,这个函数将在原地解密密文并将结果存储在 ciphertext 中,最后我们将其打印出来以得到解密后的明文。

需要注意的是,在处理小写和大写字母时要分别加上 'a' 或 'A',并且需要对数字进行模运算以确保使用正常的字母序,使用了 gets 函数读取用户输入,需要小心输入超过字符数组容量时可能导致的缓冲区溢出问题。

相关推荐
爱学习的白杨树2 分钟前
MyBatis的一级、二级缓存
java·开发语言·spring
OTWOL7 分钟前
两道数组有关的OJ练习题
c语言·开发语言·数据结构·c++·算法
问道飞鱼11 分钟前
【前端知识】强大的js动画组件anime.js
开发语言·前端·javascript·anime.js
拓端研究室11 分钟前
R基于贝叶斯加法回归树BART、MCMC的DLNM分布滞后非线性模型分析母婴PM2.5暴露与出生体重数据及GAM模型对比、关键窗口识别
android·开发语言·kotlin
Code成立12 分钟前
《Java核心技术I》Swing的网格包布局
java·开发语言·swing
Auc2417 分钟前
使用scrapy框架爬取微博热搜榜
开发语言·python
QQ同步助手24 分钟前
C++ 指针进阶:动态内存与复杂应用
开发语言·c++
凯子坚持 c30 分钟前
仓颉编程语言深入教程:基础概念和数据类型
开发语言·华为
小爬虫程序猿32 分钟前
利用Java爬虫速卖通按关键字搜索AliExpress商品
java·开发语言·爬虫
程序猿-瑞瑞34 分钟前
24 go语言(golang) - gorm框架安装及使用案例详解
开发语言·后端·golang·gorm