mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
18 lines
380 B
Go
18 lines
380 B
Go
package realtime
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"fmt"
|
|
"github.com/oklog/ulid/v2"
|
|
"time"
|
|
)
|
|
|
|
func generateClientID() string {
|
|
// Create a source of entropy (cryptographically secure)
|
|
entropy := ulid.Monotonic(rand.Reader, 0)
|
|
// Generate a new ULID
|
|
id := ulid.MustNew(ulid.Timestamp(time.Now()), entropy)
|
|
// Create the client ID string
|
|
return fmt.Sprintf("mch_%s", id.String())
|
|
}
|