Guest User

Untitled

a guest
Feb 18th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. package store
  2.  
  3. import (
  4. "crypto/md5"
  5. "encoding/hex"
  6. )
  7.  
  8. func shortLinkGenerator(key string) string {
  9. hash := md5.Sum([]byte(key))
  10. return hex.EncodeToString(hash[:])
  11. }
Add Comment
Please, Sign In to add comment