Does anybody have some experience in creating a SHA-256 hashcode via FME (desktop/server)? or in combination with third party software?
Solved
SHA-256 hashcode
Hi all,
Best answer by david_r
Hi
View original
Its rather easy to do with Python's built-in hashlib module (https://docs.python.org/2/library/hashlib.html), something like:
---
import hashlib
hash = hashlib.sha256()
hash.update('Lorem ipsum')
hash.update('dolor sit amet')
print hash.hexdigest()
---
David
Reply
Rich Text Editor, editor1
Editor toolbars
Press ALT 0 for help
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.