0

Need a way to hash strings into constant length lowercase alphanumeric (hyphen also accepted) strings. The total size of different values I'll have is < 50. Thank you.

Bax
  • 4,260
  • 5
  • 43
  • 65

1 Answers1

1

Get the md5 of your string and it will always be a 32 length alphanumeric string. Here is a help. FYI, md5 is a one way hashing. You can not revert back to that hash into your original string anymore.

Community
  • 1
  • 1
Sabuj Hassan
  • 38,281
  • 14
  • 75
  • 85