0
How to make a bot or automation?
I want to create a sha256 hash encrypt data of decimal 1 to 2. Example :- 1.00001,1.00002....etc.and save result to excel or any format to store data offline. Site where i want automation https://sha256.online/ I will pay if its not too high.
1 Resposta
0
If yoy just need a hash of a set of strings, you don't need a bot for that - just use hashlib.sha256(s.encode('ascii')).digest() for each string you have (python) or crypto.createHash('sha256') and then update and digest on returned object (node.js)