ubuntu环境下openssl库的简单使用

安装

sudo apt-get install libssl-dev

aes算法demo

编译:gcc aes.c -lssl -lcrypto -o aes
运行:./aes

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<openssl/aes.h>#define AES_KEY_SIZE 128 // AES密钥长度
#define AES_BLOCK_SIZE 16 // AES分块大小// 加密函数
void aes_encrypt(const unsigned char *plaintext, unsigned char *ciphertext, const unsigned char *key) 
{AES_KEY aes_key;AES_set_encrypt_key(key, AES_KEY_SIZE, &aes_key);AES_encrypt(plaintext, ciphertext, &aes_key);
}// 解密函数
void aes_decrypt(const unsigned char *ciphertext, unsigned char *plaintext, const unsigned char *key)
{AES_KEY aes_key;AES_set_decrypt_key(key, AES_KEY_SIZE, &aes_key);AES_decrypt(ciphertext, plaintext, &aes_key);
}int main(int argc, char **argv) 
{// 明文密码const char *plaintext_password = "my_password";size_t plaintext_password_len = strlen(plaintext_password);// AES密钥const unsigned char aes_key[] = { 0x7b, 0xf3, 0x5c, 0xd6, 0x9c, 0x47, 0x5d, 0x5e, 0x6f, 0x1d, 0x7a, 0x23, 0x18, 0x7b, 0xf9, 0x34 };// 分配加密后的密文空间size_t ciphertext_password_len = ((plaintext_password_len + AES_BLOCK_SIZE - 1) / AES_BLOCK_SIZE) * AES_BLOCK_SIZE;unsigned char *ciphertext_password = malloc(ciphertext_password_len);// 对明文密码进行AES加密aes_encrypt((const unsigned char *)plaintext_password, ciphertext_password, aes_key);// 输出加密后的密码printf("加密后的密码:");for (size_t i = 0; i < ciphertext_password_len; i++) {printf("%02x", ciphertext_password[i]);}printf("\n");// 分配解密后的明文空间unsigned char *decrypted_password = malloc(plaintext_password_len);// 对密文密码进行AES解密aes_decrypt(ciphertext_password, decrypted_password, aes_key);// 输出解密后的密码printf("解密后的密码:%s\n", decrypted_password);// 释放空间free(ciphertext_password);free(decrypted_password); return 0;
}

des算法demo

编译:gcc des.c -lssl -lcrypto des
运行:./des

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<openssl/des.h>int main(int argc,char **argv)
{DES_cblock key;//随机密钥DES_random_key(&key);DES_key_schedule schedule;//转换成scheduleDES_set_key_checked(&key, &schedule);const_DES_cblock input = "hehehe";DES_cblock output;printf("cleartext: %s\n", input);//加密DES_ecb_encrypt(&input, &output, &schedule, DES_ENCRYPT);printf("Encrypted!\n");printf("ciphertext: ");int i;for (i = 0; i < sizeof(input); i++)printf("%02x", output[i]);printf("\n");//解密DES_ecb_encrypt(&output, &input, &schedule, DES_DECRYPT);printf("Decrypted!\n");printf("cleartext:%s\n", input);return 0;
}

sm1算法demo


ssf33算法demo


sm4算法demo

编译:gcc sm4.c -lssl -lcrypto -o sm4
运行:./sm4

#include <openssl/evp.h>
#include <openssl/rand.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>// 加密函数
void encryptSM4(const unsigned char *plaintext, int plaintextLength, const unsigned char *key, unsigned char *ciphertext, int *ciphertextLength) {EVP_CIPHER_CTX *ctx;int len;// 创建并初始化上下文ctx = EVP_CIPHER_CTX_new();EVP_EncryptInit_ex(ctx, EVP_sm4_ecb(), NULL, key, NULL);// 加密数据EVP_EncryptUpdate(ctx, ciphertext, &len, plaintext, plaintextLength);*ciphertextLength = len;// 结束加密过程EVP_EncryptFinal_ex(ctx, ciphertext + len, &len);*ciphertextLength += len;// 释放上下文EVP_CIPHER_CTX_free(ctx);
}// 解密函数
void decryptSM4(const unsigned char *ciphertext, int ciphertextLength, const unsigned char *key, unsigned char *plaintext, int *plaintextLength) {EVP_CIPHER_CTX *ctx;int len;// 创建并初始化上下文ctx = EVP_CIPHER_CTX_new();EVP_DecryptInit_ex(ctx, EVP_sm4_ecb(), NULL, key, NULL);// 解密数据EVP_DecryptUpdate(ctx, plaintext, &len, ciphertext, ciphertextLength);*plaintextLength = len;// 结束解密过程EVP_DecryptFinal_ex(ctx, plaintext + len, &len);*plaintextLength += len;// 释放上下文EVP_CIPHER_CTX_free(ctx);
}int main(int argc, char **argv)
{const unsigned char plaintext[] = "Hello, SM4!"; // 明文const unsigned char key[] = "0123456789abcdef"; // 128位密钥unsigned char ciphertext[256];unsigned char decryptedText[256];int ciphertextLength = 0;int decryptedLength = 0;// 加密encryptSM4(plaintext, sizeof(plaintext) - 1, key, ciphertext, &ciphertextLength);// 打印密文printf("%s", "Ciphertext:");for (int i = 0; i < ciphertextLength; ++i) {printf("%02x", ciphertext[i]);}printf("\n");// 解密decryptSM4(ciphertext, ciphertextLength, key, decryptedText, &decryptedLength);// 打印解密后的明文printf("%s\n", decryptedText);return 0;
}

sm6算法demo


本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/697445.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

UNI-APP_app跳转企业微信客服对话

uniapp打包app&#xff0c;app里点击客服&#xff0c;跳转企业微信客服对话。为什么是企业微信&#xff1f;因为只有微信小程序才可以通过 button 的 open-type‘share’ 打开微信客服对话框&#xff08;微信客服要在公众号平台配置&#xff09; 1、appId获取 &#xff08;1&a…

OJAC近屿智能张立赛博士揭秘GPT Store:技术创新、商业模式与未来趋势

> - [Look&#xff01;&#x1f440;我们的大模型商业化落地产品](https://www.airecruitas.com/aigc) >- &#x1f4d6;更多AI资讯请&#x1f449;&#x1f3fe;[关注](https://mp.weixin.qq.com/s/85qwuIydaaydMQz2g0rgMA) >- [Free三天集训营助教在线为您火热答疑…

C#_各式各样的参数(引用参数、输出参数、数组参数、具名参数、可选参数)

引用参数 值参数和引用参数的区别在于传参时是否会创建参数副本&#xff1a;值参数不会创建副本&#xff0c;而引用参数会创建副本。 换言之&#xff0c;值类型参数的参数与实体之间无直接关联&#xff0c;修改参数不会对实体产生影响&#xff1b;引用类型参数的参数与实体可视…

6.微格式

微格式 经典真题 知道什么是微格式吗&#xff1f;谈谈理解。在前端构建中应该考虑微格式吗&#xff1f; 微格式介绍 所谓微格式&#xff0c;是建立在已有的、被广泛采用的标准基础之上的一组简单的、开放的数据格式。 具体表现是把语义嵌入到 HTML 中&#xff0c;以便有助…

通过SSH 可以访问Ubuntu Desktop吗?

你可以在 Ubuntu Desktop 上开启 SSH 服务&#xff0c;以便其他机器可以通过 SSH 连接到你的服务器。以下是在 Ubuntu Desktop 上开启 SSH 服务的步骤&#xff1a; 打开终端 (Terminal) 应用程序。 输入以下命令安装 OpenSSH 服务器&#xff1a; sudo apt-get update sudo ap…

多任务爬虫(多线程和多进程)

在一台计算机中&#xff0c;我们可以同时打开多个软件&#xff0c;例如同时浏览网页、听音乐、打字等&#xff0c;这是再正常不过的事情。但仔细想想&#xff0c;为什么计算机可以同时运行这么多软件呢? 这就涉及计算机中的两个名词&#xff1a;多进程和多线程。 同样&#xf…

通信入门系列——锁相环、平方环、Costas环

微信公众号上线&#xff0c;搜索公众号小灰灰的FPGA,关注可获取相关源码&#xff0c;定期更新有关FPGA的项目以及开源项目源码&#xff0c;包括但不限于各类检测芯片驱动、低速接口驱动、高速接口驱动、数据信号处理、图像处理以及AXI总线等 本节目录 一、锁相环 1、压控振荡…

重磅!MongoDB推出Atlas Stream Processing公共预览版

日前&#xff0c;MongoDB宣布推出Atlas Stream Processing公共预览版。 在Atlas平台上有兴趣尝试这项功能的开发者都享有完全的访问权限&#xff0c;可前往“阅读原文”链接点击了解更多详细信息或立即开始使用。 开发者喜欢文档型数据库的灵活性、易用性以及Query API查询方…

使用k-近邻算法改进约会网站的配对效果(kNN)

目录 谷歌笔记本&#xff08;可选&#xff09; 准备数据&#xff1a;从文本文件中解析数据 编写算法&#xff1a;编写kNN算法 分析数据&#xff1a;使用Matplotlib创建散点图 准备数据&#xff1a;归一化数值 测试算法&#xff1a;作为完整程序验证分类器 使用算法&…

js过滤取出对象中改变的属性和值

朋友公司的面试题 &#xff0c;取出对象中被改变的属性和值 const obj1 { a: 1, b: 2, c: 4 }; const obj2 { a: 1, b: 2, c: 5 }; 方法1 function testFun(obj1, obj2) {const diff {};const keys1 Object.keys(obj1);const keys2 Object.keys(obj2);const allKyes keys…

【深度学习】Gemini 1.0 Pro 如何让chatGPT扮演stable diffusion的提示词工程师

google也出了一个chatGPT&#xff0c;免费申请使用&#xff1a; https://aistudio.google.com/app/prompts/new_chat https://github.com/google/generative-ai-docs/blob/main/site/en/tutorials/rest_quickstart.ipynb 模型信息&#xff1a; $ curl https://generativelan…

SpringCloud(14)之SpringCloud Consul

我们知道 Eureka 2.X 遇到困难停止开发了&#xff0c;所以我们需要寻找其他的替代技术替代Eureka&#xff0c;这一小 节我们就讲解一个新的组件Consul。 一、Consul介绍 Consul 是 HashiCorp 公司推出的开源工具&#xff0c;用于实现分布式系统的服务发现与配置。与其它分布式…

kali xrdp

Kali Linux 使用远程桌面连接——xrdp&xfce_kali xfce桌面-CSDN博客 Ubuntu/Debian/Kali xrdp远程桌面黑屏/空屏/无画面解决办法 - 知乎 (zhihu.com) sudo apt-get install xrdp -y sudo apt-get install xfce4 -ysudo systemctl enable xrdp --now systemctl status xrd…

中级.NET开发工程师面试经历

文章目录 前言面试题目&#xff08;只记录了还记得的部分&#xff09;一.简单说下.NETCORE的生命周期&#xff1f;二.C#如何保证在并发情况下接口不会被重复触发&#xff1f;三.引用类型和值类型有什么区别&#xff1f;四.那怎样能让引用类型和值类型一样&#xff0c;在赋值的时…

【Latex】TeXstudio编译器选项修改

1、动机 编译国科大博士毕业答辩论文latex时报错 Package ctable Error: You must load ctable after tikz. 2、方法 经过搜索发现是因为这是中文模板&#xff0c;编译的选项不对&#xff0c;需要从 PDFLaTeX 调整到 XeLaTeX。于是操作如下 1&#xff09;点击选项 2&#xf…

linux 文件目录操作命令【重点】

目录 ls cd cat more tail【工作中使用多】 mkdir rmdir rm ls 作用: 显示指定目录下的内容 语法: ls [-al] [dir] 说明: -a 显示所有文件及目录 (. 开头的隐藏文件也会列出) -l 除文件名称外&#xff0c;同时将文件型态(d表示目录&#xff0c;-表示文件)、权限…

SpringMVC POST请求传参 属性名字母大写注入失败解决方案

问题描述&#xff1a; 我现在有一个接口通过一个实体(RequestBody)去接收一系列的参数&#xff0c;前端传参为一个JSON字符串&#xff0c;但是当我的属性名以大写字母开头(有的中间还有下划线)&#xff0c;或者第二个字母是大写字母的时候&#xff0c;我发现后端接收不到参数值…

Flask——基于python完整实现客户端和服务器后端流式请求及响应

文章目录 本地客户端Flask服务器后端客户端/服务器端流式接收[打字机]效果 看了很多相关博客&#xff0c;但是都没有本地客户端和服务器后端的完整代码示例&#xff0c;有的也只说了如何流式获取后端结果&#xff0c;基本没有讲两端如何同时实现流式输入输出&#xff0c;特此整…

C++字符串类

C中有两种主要的字符串类&#xff1a;std::string 和 std::wstring。 std::string std::string 是 C 标准库中用于处理 ASCII 字符串的类。它提供了丰富的方法来操作字符串&#xff0c;包括插入、删除、查找子串、比较等功能。使用 std::string 需要包含头文件 <string>…

8.CSS层叠继承规则总结

CSS 层叠继承规则总结 经典真题 请简述一下 CSS 中的层叠规则 CSS 中的层叠继承规则 在前面《CSS属性的计算过程》中&#xff0c;我们介绍了每一个元素都有都有所有的属性&#xff0c;每一个属性都会通过一系列的计算过程得到最终的值。 这里来回顾一下计算过程&#xff0…