how can i generate hash value from key
Mostrar comentarios más antiguos
HI I want to generate hash value from key (of numbers) then this key I am going to use in block transformation in image processing.pl help me for code of calculating hash from key
Respuestas (1)
Walter Roberson
el 5 de Sept. de 2013
function h = calculate_hash(key)
h = 0;
end
Hash keys are not necessarily unique or difficult to calculate. You have not given any reason why this would not be a suitable hash function.
Categorías
Más información sobre MATLAB Coder en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!