-
有关字节对齐的一些参考,主要介绍结构体成员变量的对齐问题...
有关字节对齐的一些参考,主要介绍结构体成员变量的对齐问题-Byte-aligned some of the relevant reference, mainly introduce the members of the structure alignment problem variables
- 2022-03-19 08:33:46下载
- 积分:1
-
这学期学软件工程做的航空订票系统开发过程中的UML图,包括用例和状态,甘特图没找到,如果需要的话,请留言给我,我再...
这学期学软件工程做的航空订票系统开发过程中的UML图,包括用例和状态,甘特图没找到,如果需要的话,请留言给我,我再-Learn to do this semester software engineering development process of aviation reservation systems in the UML diagrams, including the use of cases and the state, Gantt Chart not find, if necessary, please message to me, I would look for
- 2022-08-21 01:22:07下载
- 积分:1
-
moment Inquiry System software engineering document
学生project 火车时刻查询系统 软件工程文档-英文。对需要软件工程文档的朋友有写帮助-moment Inquiry System software engineering document-English. The need for software engineering documents are written to help a friend
- 2022-01-30 16:10:16下载
- 积分:1
-
要求用户名字和密码完全正确的验证正确才能登陆
连接数据库...
要求用户名字和密码完全正确的验证正确才能登陆
连接数据库-Requires a user name and password completely correct in order to verify the correct landing connect to database
- 2023-01-10 06:25:03下载
- 积分:1
-
某医院病房管理系统设计报告可以作为毕业大作业.随着医院规模的大型化,传统的医院靠人工管理的方式已经越来越不适应现代医院的规模了。而且随着电脑的普及及电脑性能的提...
某医院病房管理系统设计报告可以作为毕业大作业.随着医院规模的大型化,传统的医院靠人工管理的方式已经越来越不适应现代医院的规模了。而且随着电脑的普及及电脑性能的提高,使用电脑来管理医院的常规运作已经成为必然。-ward of a hospital management system design report can be used as graduation large operations. With large-scale hospitals, hospitals rely on the traditional manual management methods have become increasingly unsuited to the modern hospital scale. But as the popularity of computers and computer performance increases, the use of computers to manage the operation of conventional hospitals have become a necessity.
- 2022-02-24 08:45:36下载
- 积分:1
-
使用威尔配对,本文提出了一种基于身份的环签密方案,给出了具体的算法.该方案能够使消息的
发送者以一种完全匿名的方式发送消息,并且同时实现保密性和认证性两种功...
使用威尔配对,本文提出了一种基于身份的环签密方案,给出了具体的算法.该方案能够使消息的
发送者以一种完全匿名的方式发送消息,并且同时实现保密性和认证性两种功能.我们证明了在决策双线性Diffie-
Hellman问题难解的假设下,新提出的方案对自适应选择密文攻击是安全的.与传统的先签名后加密的方案
相比,本方案中密文长度有了明显的降低,在低带宽的要求下更加可行.-Will the use of matching, this paper, a ring of identity-based signcryption program, given a specific algorithm. The program will enable the sender information in a completely anonymous way to send messages, and at the same time to achieve confidentiality and authentication of two functions. We prove that in the decision-making bilinear Diffie-Hellman problem difficult to resolve under the assumption that the new proposal for adaptive chosen ciphertext attack is safe. with the traditional first signed encrypted program compared ciphertext of the program significantly reduced the length, in the low-bandwidth request more feasible.
- 2022-03-18 08:18:49下载
- 积分:1
-
一个很不错的C++餐饮管理系统
一个很不错的C++餐饮管理系统-a very good C Restaurant Management System
- 2022-01-28 08:39:49下载
- 积分:1
-
对学习ASN1的朋友很有帮助,该文档详细讲述了ASN1的各个方面
对学习ASN1的朋友很有帮助,该文档详细讲述了ASN1的各个方面-Learning ASN1 helpful friends, the documents describe in detail all aspects of the ASN1
- 2022-04-14 23:40:47下载
- 积分:1
-
东北大学c++大作业
资源描述东北大学c++选修课大作业。。。。。。。。超市管理系统,内容不太多比较简单,但成绩还不错。
- 2022-03-14 11:52:23下载
- 积分:1
-
2 自由机器人手臂运动范围检查
这是 2 自由机器人手臂运动范围检查。公共类 TDraw {私人 PictureBox picbox = null ; 私人位图位图 = null ; 私人图形 = null ; 私人双 xmin,xmax,ymin,ymax ; 논리좌표최소최대 / / 논리좌표를좌표로public 浮球的 xpixelpos (双 xpo) {返回 Convert.ToSingle (picbox。ClientSize.Width/(xmax-xmin) * (xpos-xmin)) ;}公众持股量 ypixelpos (双 ypos) {返回 Convert.ToSingle(-picbox.ClientSize.Height / (ymax-ymin) * (ypos-ymin) + picbox。ClientSize.Height) ;}公众持股量 xpixelsize(double xsize) {返回 Convert.ToSingle (picbox。ClientSize.Width * xsize/(xmax-xmin)) ;}公众持股量 ypixelsize(double ysize) {返回 Convert.ToSingle (picbox。ClientSize.Height * ysize/(ymax-ymin)) ;}pixel좌표를논리좌표로public 双 xposD (浮法 xpixel) {返回 Convert.ToDouble ((xmax-xmin) / picbox。ClientSize.Width * xpixel + xmin);}公共双 yposD (浮法 ypixel) {返回 Convert.ToDouble ((ymax-ymin) / (-picbox。ClientSize.Height) * (ypixel-picbox。ClientSize.Height) + ymin) ;}公共双 xsizeD (浮法 xpixelsize) {返回 Convert.ToDouble (xpixelsize/picbox。ClientSize.Width * (xmax-xmin)) ;}公共双 ysizeD (浮法 ypixelsize) {返回 Convert.ToDouble (ypixelsize/picbox。Clie
- 2022-10-29 14:20:03下载
- 积分:1