Location:
Search - matlab sha
Search list
Description: 对于信号的奇异性检测,也是一个道理。
% 小波变换用于奇异检测
% 编程人: 沙威(Wei Sha) 安徽大学(Anhui University) ws108@ahu.edu.cn
Platform: |
Size: 3407 |
Author: wudong |
Hits:
Description: 这是一个用matlab写的hash函数,相信对用matlab做实验仿真的同学有所帮助-This is a hash function written in matlab, I believe that using matlab simulation experiments help students
Platform: |
Size: 1024 |
Author: 王量 |
Hits:
Description: SHA (安全Hash算法)是一种单向散列算法,可用于数字加密或数字签名,是比MD5更加安全的单向散列算法,与MD5算法一起时被应用最广泛的两种算法。-SHA (secure Hash algorithm) is a one-way hash algorithm, can be used for digital encryption or digital signature is more secure than the MD5 one-way hash algorithm, in conjunction with the MD5 algorithm was the most widely used two algorithms.
Platform: |
Size: 5120 |
Author: 张汉江 |
Hits:
Description: 对于信号的奇异性检测,也是一个道理。
% 小波变换用于奇异检测
% 编程人: 沙威(Wei Sha) 安徽大学(Anhui University) ws108@ahu.edu.cn
-For the singularity detection signal is also a reason. Wavelet Transform singularity detection for programming by: much excited to meet (Wei Sha) Anhui University (Anhui University) ws108@ahu.edu.cn
Platform: |
Size: 3072 |
Author: wudong |
Hits:
Description: Fei Sha 等人编写的流形学习算法CCA的matlab代码,它基于MVU算法,但是计算速度比较慢-Fei Sha and others prepared CCA manifold learning algorithm of matlab code, which is based on MVU algorithm, but the calculation speed is relatively slow
Platform: |
Size: 16384 |
Author: Chenping Hou |
Hits:
Description: 利用HASH(采用sha-1算法)算法原理,设计数字签名的水印算法,完成嵌入、(提取)验证,-Use HASH (using sha-1 algorithm) algorithm, design of watermarking algorithms digital signature to complete the embedding, (extract) authentication,
Platform: |
Size: 34816 |
Author: 尉玉林 |
Hits:
Description: security encryption algorithm sha-1
Platform: |
Size: 4096 |
Author: oromeo01 |
Hits:
Description: hmac using SHA algorithm source code-hmac using SHA algorithm source code...
Platform: |
Size: 96256 |
Author: anshul khandelwal |
Hits:
Description: SHA Algorithm implementation
Platform: |
Size: 1024 |
Author: kumdwati |
Hits:
Description: A code for Secure Hashing
Platform: |
Size: 2048 |
Author: Avijit |
Hits:
Description: SHA-1 MATLAB implementation
Platform: |
Size: 5120 |
Author: ikarigeorge |
Hits:
Description: 散列算法,用于生成原始消息的数字指纹,本算发基于MATLAB编写,本算法包含多种流行的散列算法,包括SHA1和SHA-256等广泛应用的散列算法,通过本程序,可以对几种广泛应用的散列算法进行调用-Hash algorithm used to generate the digital fingerprint of the original message, this is based on MATLAB, this algorithm contains a variety of popular hash algorithm, including SHA1 and SHA- 256 hash algorithm is widely used, through this program, several widely used hash algorithms can be invoked
Platform: |
Size: 1024 |
Author: 奥巴马 |
Hits:
Description: 沙威的原文,压缩感知入门OMP算法程序,CS中的hello world。-paper Wei Sha. matlab code of OMP algorithm. suit for beginner in CS study
Platform: |
Size: 192512 |
Author: uu |
Hits:
Description: 官方哈希加密算法
% EXAMPLES:
% % Default: MD5, hex:
% DataHash([]) % 5b302b7b2099a97ba2a276640a192485
% % MD5, Base64:
% Opt = struct('Format', 'base64', 'Method', 'MD5');
% DataHash(int32(1:10), Opt) % +tJN9yeF89h3jOFNN55XLg
% % SHA-1, Base64:
% S.a = uint8([]);
% S.b = {{1:10}, struct('q', uint64(415))};
% Opt.Method = 'SHA-1';
% Opt.Format = 'HEX';
% DataHash(S, Opt) % 18672BE876463B25214CA9241B3C79CC926F3093
% % SHA-1 of binary values:
% Opt = struct('Method', 'SHA-1', 'Input', 'bin');
% DataHash(1:8, Opt) % 826cf9d3a5d74bbe415e97d4cecf03f445f69225
% % SHA-256, consider ASCII part only (Matlab's CHAR has 16 bits!):
% Opt.Method = 'SHA-256';
% Opt.Input = 'ascii';
% DataHash('abc', Opt)
% % ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad
% % Or equivalently:
% Opt.Input = 'bin';
% DataHash(uint8('abc'), Opt)(Official hash encryption algorithm
% EXAMPLES:
% % Default: MD5, hex:
% DataHash([]) % 5b302b7b2099a97ba2a276640a192485
% % MD5, Base64:
% Opt = struct('Format', 'base64', 'Method', 'MD5');
% DataHash(int32(1:10), Opt) % +tJN9yeF89h3jOFNN55XLg
% % SHA-1, Base64:
% S.a = uint8([]);
% S.b = {{1:10}, struct('q', uint64(415))};
% Opt.Method = 'SHA-1';
% Opt.Format = 'HEX';
% DataHash(S, Opt) % 18672BE876463B25214CA9241B3C79CC926F3093
% % SHA-1 of binary values:
% Opt = struct('Method', 'SHA-1', 'Input', 'bin');
% DataHash(1:8, Opt) % 826cf9d3a5d74bbe415e97d4cecf03f445f69225
% % SHA-256, consider ASCII part only (Matlab's CHAR has 16 bits!):
% Opt.Method = 'SHA-256';
% Opt.Input = 'ascii';
% DataHash('abc', Opt)
% % ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad
% % Or equivalently:
% Opt.Input = 'bin';
% DataHash(uint8('abc'), Opt))
Platform: |
Size: 6144 |
Author: longgyy
|
Hits:
Description: Fei Sha 等人编写的流形学习算法CCA的matlab代码,它基于MVU算法,但是计算速度比较慢()
Platform: |
Size: 11264 |
Author: weresa |
Hits: