I am new to crypto
, please help me. Thanks in advance.
var seed = "adb6f118edd6ca21cd88c2709b5b395266c0b3d71bd3c55bac875a31017c29fa"
var seed_hash = CryptoJS.SHA256(seed).toString(CryptoJS.enc.Hex);
console.log(seed_hash);
The result of seed_hash
is
"ead4c97002cdd8e9d60199fb23a2173fbe4065c55855608a2d1dee38891513a6"
My question is, how to convert it back to
"adb6f118edd6ca21cd88c2709b5b395266c0b3d71bd3c55bac875a31017c29fa"
and print it in the console as text.