搜索结果
找到约 601 项符合
private-key 的查询结果
加密解密 The Stanford IBE library is a C implementation of the Boneh-Franklin identity-based encryption sche
The Stanford IBE library is a C implementation of the Boneh-Franklin
identity-based encryption scheme. (See Boneh and Franklin, "Identity-Based
Encryption from the Weil Pairing", CRYPTO 2001.)
There are a few modifications and additions. The Boneh-Franklin scheme is
used as a Key Encapsulation Mech ...
软件设计/软件工程 Dijkstra算法求最短路径(C#版) using System using System.Collections using System.Text namespace Greedy
Dijkstra算法求最短路径(C#版) using System
using System.Collections
using System.Text
namespace Greedy
{
class Marx
{
private int[] distance
private int row
private ArrayList ways = new ArrayList()
public Marx(int n,params int[] d)
{
this.row = n
distance = new int[row * row]
for ( ...
VC书籍 VC6.0核心编程。主要涉及到windows消息
VC6.0核心编程。主要涉及到windows消息,框架,mfc库以及相关编程,com,activex技术,数据库技术,网络编程技术。为英文版本。
The 6.0 release of Visual C++ shows Microsoft s continued focus on Internet technologies and COM, which are key components of the new Windows Distributed interNet Application Archit ...
DSP编程 2407C文件夹包括第8~16章的C语言代码及使用说明。有如下子文件夹:  第8章数字输入输出8路开关量输入输出(8IOIN+8IOOUT);  第8章数字输入输出
2407C文件夹包括第8~16章的C语言代码及使用说明。有如下子文件夹:
&#61548 第8章数字输入输出8路开关量输入输出(8IOIN+8IOOUT);
&#61548 第8章数字输入输出模块(led);
&#61548 第8章数字输入输出模块(LED+KEY);
&#61548 第9章事件管理器模块(PWM);
&#61548 第9章事件管理器模块_编码(QEP);
&#61548 第9章事件管 ...
CA认证 雜湊法(Hashing)的搜尋與一般的搜尋法(searching)是不一樣的。在雜湊法中
雜湊法(Hashing)的搜尋與一般的搜尋法(searching)是不一樣的。在雜湊法中,鍵值(key value)或識別字(identifier)在記憶體的位址是經由函數(function)轉換而得的。此種函數,一般稱之為雜湊函數(Hashing function)或鍵值對應位址轉換(key to address transformation)。對於有限的儲存空間,能夠有效使用且在加入或刪除時也能 ...
通讯编程文档 You imagine? Right, there s more than one possibility, this time I ll give you tree. One for your pr
You imagine? Right, there s more than one possibility, this time I ll give you tree. One for your private data, one for the common data in order to receive data from other applications like Excel, WinWord etc. and at last, I ll give you a handy-dandy class you can derive ANY MFC object from, to make ...
其他嵌入式/单片机内容 矩阵键盘驱动程序
矩阵键盘驱动程序, unsigned char key(void) 只要调用这个函数即可实现
数据结构 This code implements the shortest path algorithm via the simple scheme and fibonacci heap data struc
This code implements the shortest path algorithm via the simple scheme and fibonacci heap data structure. It has 3 kinds of testing data input method : random input by computer, reading from the file, reading from the key board.
Internet/网络编程 其中:ClientInfor.inf 文件: 第一行的数据表示: 客户端游戏版本号 第一行的数据表示: 更新文件存放的网络路径 UpdateInfor.inf文件: 第一行的数据表示:
其中:ClientInfor.inf 文件:
第一行的数据表示: 客户端游戏版本号
第一行的数据表示: 更新文件存放的网络路径
UpdateInfor.inf文件:
第一行的数据表示: 最新游戏版本号
第二行的数据表示: 有多少文件需要更新
后面每行的数据表示: 需要更新的文件的名称
frmUpdate.frm窗体: 负责下载
modZip.BAS模块: 只 ...
加密解密 blowfish加密算法的编码类
blowfish加密算法的编码类,用VC6开发,使用时
先要用BlowfishKeyInit()对blowfish所使用的key初始化。