How to create a Sha1 Digest UUID from a string?
Posted: Mon Oct 19, 2015 9:29 am
I saw this forum thread: http://forums.livecode.com/viewtopic.ph ... 15&p=72918
There are no livecode lessons for this. The dictionary talks about namespaces and names, but I couldn't find out what those mean in the dictionary. I checked stack overflow, LC facebook page, etc. and still can't find any examples. So I thought I would ask you guys.
How do you create a UUID from a string?
I am trying to build a string that turns into a hex Sha1.
That is what I want to write but it wont even let me save it. So what can I do to make this right?
Thanks guys n gals!
-Will
There are no livecode lessons for this. The dictionary talks about namespaces and names, but I couldn't find out what those mean in the dictionary. I checked stack overflow, LC facebook page, etc. and still can't find any examples. So I thought I would ask you guys.
How do you create a UUID from a string?
I am trying to build a string that turns into a hex Sha1.
Code: Select all
put "public_id=" & kPublicID & "×tamp=" & the seconds & kSecret into tKey
put UUID("SHA1", tKey) into sTokenID
Thanks guys n gals!
-Will