Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: allocs Clear Filter

Fast cryptographically safe GUID generator for Go

guid Fast cryptographically safe Guid generator for Go. By Stan Drapkin. Go playground package main import ( "fmt" "github.com/sdrapkin/guid" ) func main () { for range 4 { fmt . Printf ( "%x " , guid . New ()) } fmt . Println () for range 4 { g := guid . New () fmt . Println ( & g ) // calls g.String() } } 79c9779af20dcd21fbe60f3b336ed08c da2026d38edca4371a476efd41333d23 88c3033b002b0e73321509ef26de607f a84e961ff7f09f5210ea04585f152e73 WF8MvK5CUOrI-enEuvS0jw AOp8Voi5knpu1mg3RjzmSg gxOQRIVR

Topics: 10 allocs guid ns op