Question:
Hi
I am trying to generate a SHA256-Hash using a given Salt. Here is my Powerubiler-Code (Powerscript):
loo_Crypt.HashAlgorithm = "sha256"
loo_Crypt.EncodingMode = "hex"
loo_crypt.salt = s_salt
ls_Hash = loo_Crypt.HashStringENC(ls_hash_me)
Problem: The salt has no influence on the hash. What am I missing?
Thanks!
The documentation for the Salt property mentions that it's for password based encryption (PBE), so I don't think it has any effect on hashing. See:
Salt *The salt to be used with password-based encryption (PBE). Password-based encryption is defined in the PKCS5 Password-Based Cryptography Standard at http://www.rsa.com/rsalabs/node.asp?id=2127*
Instead I think the common practice is to combine your salt and secret data before hashing the combined data.
Another option would be to use the HashBeginBytes/HashBeginString , HashMoreBytes/HashMoreString, HashFinal/HashFinalEnc approach as follows:
The Salt property is used in encryption when the CryptAlgorithm is set to "pbes1" or "pbes2". Also note that it is not used by the Pbkdf1 or Pbkdf2 methods, as the salt is passed in an argument to those methods.
Hashing data does not involve the automatic use of salt. If one SHA256 hashes "hello world" -- the input data is "hello world" and nothing else. Hash algorithms do not have salt in the definition/specification of the hashing algorithm.
Thanks for your answers!
However I still can't figure on how to solve the following task:
Here is an example of SHA-256 hash. Make sure to add the salt first, then the value when creating the hash. The result must be in hexadecimal format.
Salt
9658705148326752896425325874125287032598745820647259684207641524
Clear text number to be hashed:
7561234567895
you should receive the following hash:
5d3cee33aafd70db6ee06c53cfe65aa5cfefc795ecd9a464029fd1ada5ded0ab
I just figured it out. This code seems to work:
loo_crypt.hashbeginstring("9658705148326752896425325874125287032598745820647259684207641524")
loo_crypt.hashmorestring("7561234567895")
ls_hash = loo_crypt.hashfinalenc()
One last question: the letters of the hash I am getting by calling hashfinalenc() are uppercase, the ones in my task are lowercase. Does that make a difference?