# 凯撒加密 **Repository Path**: deng-yongsheng/c-caesar-encryption ## Basic Information - **Project Name**: 凯撒加密 - **Description**: 凯撒加密的C语言实现,支持交互式加解密和对文件的加解密 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-28 - **Last Updated**: 2022-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: C语言 ## README # 凯撒加密-C语言实现 ### 依赖 + gcc + cmake ### windows 平台下编译 ```shell make PLATFORM=windows ``` ### Linux 平台编译 ```shell make PLATFORM=linux ``` ### 使用 + 交互式加密解密 **在使用过程中按 Ctrl+C 退出程序** ```shell ./caesar ``` + 对指定文件进行加密 对 `[filename]`加密 ,输出文件到 `[filename].caesar` ```shell ./caesar [filename] ``` + 对文件进行加密 对后缀名为`[filename].caesar`的文件进行解密,输出文件到`[filename]` ```shell ./caesar [filename].caesar ```