How to make a bot or automation? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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.

12th Nov 2020, 3:43 AM
Gcuvi Ycuvu
Gcuvi Ycuvu - avatar
1 Answer
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)
12th Nov 2020, 6:46 PM
Volodymyr Chelnokov
Volodymyr Chelnokov - avatar