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
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
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.


