CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - sha matlab
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - sha matlab - List
[
Other resource
]
matlab.m
DL : 0
对于信号的奇异性检测,也是一个道理。 % 小波变换用于奇异检测 % 编程人: 沙威(Wei Sha) 安徽大学(Anhui University) ws108@ahu.edu.cn
Update
: 2008-10-13
Size
: 3.33kb
Publisher
:
wudong
[
Crack Hack
]
hash
DL : 0
这是一个用matlab写的hash函数,相信对用matlab做实验仿真的同学有所帮助-This is a hash function written in matlab, I believe that using matlab simulation experiments help students
Update
: 2025-02-17
Size
: 1kb
Publisher
:
王量
[
Crack Hack
]
SHA_MatLab
DL : 0
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.
Update
: 2025-02-17
Size
: 5kb
Publisher
:
张汉江
[
matlab
]
matlab.m
DL : 0
对于信号的奇异性检测,也是一个道理。 % 小波变换用于奇异检测 % 编程人: 沙威(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
Update
: 2025-02-17
Size
: 3kb
Publisher
:
wudong
[
Mathimatics-Numerical algorithms
]
cca
DL : 1
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
Update
: 2025-02-17
Size
: 16kb
Publisher
:
Chenping Hou
[
Crack Hack
]
d2
DL : 0
利用HASH(采用sha-1算法)算法原理,设计数字签名的水印算法,完成嵌入、(提取)验证,-Use HASH (using sha-1 algorithm) algorithm, design of watermarking algorithms digital signature to complete the embedding, (extract) authentication,
Update
: 2025-02-17
Size
: 34kb
Publisher
:
尉玉林
[
CA auth
]
SHA1
DL : 0
security encryption algorithm sha-1
Update
: 2025-02-17
Size
: 4kb
Publisher
:
oromeo01
[
CA auth
]
HMAC-SHA
DL : 0
hmac using SHA algorithm source code-hmac using SHA algorithm source code...
Update
: 2025-02-17
Size
: 94kb
Publisher
:
anshul khandelwal
[
Crack Hack
]
SHA1
DL : 0
SHA Algorithm implementation
Update
: 2025-02-17
Size
: 1kb
Publisher
:
kumdwati
[
Windows Develop
]
SHA
DL : 0
A code for Secure Hashing
Update
: 2025-02-17
Size
: 2kb
Publisher
:
Avijit
[
Crack Hack
]
SHA-1
DL : 0
SHA-1 MATLAB implementation
Update
: 2025-02-17
Size
: 5kb
Publisher
:
ikarigeorge
[
CA auth
]
hash
DL : 0
散列算法,用于生成原始消息的数字指纹,本算发基于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
Update
: 2025-02-17
Size
: 1kb
Publisher
:
奥巴马
[
matlab
]
shawei
DL : 0
沙威的原文,压缩感知入门OMP算法程序,CS中的hello world。-paper Wei Sha. matlab code of OMP algorithm. suit for beginner in CS study
Update
: 2025-02-17
Size
: 188kb
Publisher
:
uu
[
Other
]
DataHash
DL : 0
官方哈希加密算法 % 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))
Update
: 2025-02-17
Size
: 6kb
Publisher
:
longgyy
[
Mathimatics-Numerical algorithms
]
8095530
DL : 0
Fei Sha 等人编写的流形学习算法CCA的matlab代码,它基于MVU算法,但是计算速度比较慢()
Update
: 2025-02-17
Size
: 11kb
Publisher
:
weresa
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.