资源简介
matlab开发-ShamirsSecretSharing。沙米尔的秘密共享方案,也被称为(k,n)阈值,在这个文件中实现。
代码片段和文件信息
%--------------------------------------------------------------------------
% Shamir‘s Secret Sharing Demo
% By Yue Wu
% ywu03@ece.tufts.edu
% 01/10/2010
%--------------------------------------------------------------------------
clear all
close all
clc
s = -1234.5; % the secret number
k = 3; % the number of pieces of info which are sufficient for reconstruction
n = 6; % total number of pieces of info
d = ShamirSharing(skn); % generate pieces of info parts
c = d(3:5:); % collect 3 pieces of info
r = ShamirReconstruction(ck); % reconstruct secret info
display([‘the secret info is ‘ num2str(s)])
display([‘the used info is:‘])
display(c);
display([‘reconstruction is ‘ num2str(r)])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 718 2011-01-10 11:04 Demo.m
文件 1581 2011-01-10 11:03 ShamirReconstruction.m
文件 1601 2011-01-10 11:03 ShamirSharing.m
文件 1306 2014-02-12 13:22 license.txt
- 上一篇:matlab开发-othellom
- 下一篇:matlab开发-ParetoSet
相关资源
- matlab开发-ParetoSet
- matlab开发-othellom
- matlab开发-EMGONOFF
- matlab开发-级联H桥多电平转换三相
- matlab开发-带图形用户界面的步进电机
- matlab开发-MFTireGUI
- matlab开发-自适应霍夫曼编码技术字符
- matlab开发-ConnectFour
- matlab开发-floodfillscanline
- matlab开发-Paretosurfacenavigator
- matlab开发-分步序达尔文粒子群优化
- matlab开发-改进的解决方案经济调度方
- matlab开发-为Resnet50网络设计工具箱模
- matlab开发-sigmoid
- matlab开发-同步发电机的详细模型,包
- matlab开发-多层反向传播神经网络
- matlab开发-Parrotminirones的模拟支持包
- matlab开发-nnsysid
- matlab开发-使用gnewton-raphson方法查找任
- matlab开发-UR5控制Matlab
-
matlab开发-mssamultiob
jectivesalpswarmalg - matlab开发-Vasicek
- matlab开发-直流到全桥逆变器
- matlab开发-使用xFoiland ParseCGeometric参数
- matlab开发-如何模拟6到10个输入状态空
- matlab开发-mtype340
- matlab开发-rafaelaeroXFOILinterface
-
matlab开发-单相三电平去阻尼Pwmba
s - matlab开发-scatter3sph
- matlab开发-TraCI4Matlab
评论
共有 条评论