<< run | Core | version >> |
hexa_hash = sha256(str) |
hexa_hash = sha256(filename) |
hexa_hash = sha256(str, '-file') |
hexa_hash = sha256(str, '-string') |
a character vector, cell of string or array of strings: content of string will be hashed.
a string: existing filename: content of the file will be hashed.
force to hash as file or string content.
a character vector, cell of string or array of strings: hashed result (checksum).
sha256 get sha256 checksum.
R = sha256('Nelson')
R = sha256({'Hello', 'World'})
R = sha256(["Hello"; "World"])
R = sha256([modulepath('matio', 'tests'), '/mat/test_char_array_unicode_7.4_GLNX86.mat'])
R = sha256([modulepath('matio', 'tests'), '/mat/test_char_array_unicode_7.4_GLNX86.mat'], '-file')
R = sha256([modulepath('matio', 'tests'), '/mat/test_char_array_unicode_7.4_GLNX86.mat'], '-string')
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET