摘要: /home/yoga/桌面/LESS-main/Utilities/Benchmarking/lib/less_benchmark.c: In function ‘microbench’: /home/yoga/桌面/LESS-main/Utilities/Benchmarking/lib/less 阅读全文
posted @ 2024-12-19 22:44 20211211 阅读(18) 评论(0) 推荐(0)
摘要: 在openEuler(推荐)或Ubuntu或Windows(不推荐)中完成下面任务,使用git管理代码,git commit不能少于5次 1 参考《GMT 0009-2012 SM2密码算法使用规范》第6节“数据转换” 在utils.h和utils.c中完成整数与8位字节串的转换功能(10'): i 阅读全文
posted @ 2024-06-03 09:28 20211211 阅读(28) 评论(0) 推荐(0)
摘要: 代码链接:https://gitee.com/yogahuu/extendedgcd 在openEuler(推荐)或Ubuntu或Windows(不推荐)中完成下面任务,使用git管理代码,git commit 不能少于5次 在附件中的utils.h和utils.c中完成16进制字符'0'-'9', 阅读全文
posted @ 2024-06-03 09:11 20211211 阅读(14) 评论(0) 推荐(0)
摘要: 在openEuler(推荐)或Ubuntu或Windows(不推荐)中完成下面任务,要用git记录实现过程,git commit不能低于5次 严格按照《密码工程》p112伪代码实现ExtendedGCD(int a, int b, int *k, int *u, int *v)算法(10') 2.根 阅读全文
posted @ 2024-06-03 08:12 20211211 阅读(26) 评论(0) 推荐(0)
摘要: 1.创建一个根 CA,包括生成私钥和根证书。分析证书和0015,0034标准的符合情况 yoga@yoga:~$ openssl genrsa -out rootCA.key 2048 yoga@yoga:~$ openssl req -x509 -new -nodes -key rootCA.ke 阅读全文
posted @ 2024-06-01 13:30 20211211 阅读(94) 评论(0) 推荐(0)
摘要: 一、微软的Crypto API (一)研究学习 CryptoAPI是应用程序编程接口,使应用程序开发人员能够将身份验证、编码和加密添加到基于Windows的应用程序。 CryptoAPI 系统体系结构由五个主要功能领域组成:基本加密函数、证书编码/解码函数、证书Microsoft Store函数、简 阅读全文
posted @ 2024-05-29 13:50 20211211 阅读(38) 评论(0) 推荐(0)
摘要: 一、系统概述 电子公文传输系统网站分为网站首页、公文列表、公文详情、公文批改、公文搜索、用户管理、上传下载等7个功能模块。 1.用户管理模块 用户注册: 用户登录: 权限管理:用户注册后,会被赋予一个默认的普通用户的权限,管理员用户在项目开发阶段产生一个,如无特殊需要不再产生,且不允许通过注册产生。 阅读全文
posted @ 2024-05-26 19:58 20211211 阅读(61) 评论(0) 推荐(0)
摘要: 修改之后 #include "sdf.h" #include <stdio.h> #include <stdlib.h> #include <string.h> // For strlen int main() { void *phDeviceHandle = NULL; // Use a sing 阅读全文
posted @ 2024-05-20 09:31 20211211 阅读(97) 评论(0) 推荐(0)
摘要: #include "sdf.h" #include <string.h> #include <time.h> #include <stdlib.h> //******************************** //设备管理 //******************************* 阅读全文
posted @ 2024-05-20 09:12 20211211 阅读(59) 评论(0) 推荐(0)
摘要: 1 在openEuler(推荐)或Ubuntu中,使用OpenSSL命令行工具,对消息“Hello, 你的姓名学号!”使用HMAC-SM3进行验证。密钥为随机数,自己生成。提交命令行操作过程截图和结果。 2 使用C语言和OpenSSL库,在openEuler或Ubuntu上编写程序对字符串“Hell 阅读全文
posted @ 2024-04-29 09:32 20211211 阅读(145) 评论(0) 推荐(0)