11 lines
151 B
Go
11 lines
151 B
Go
// Copyright (C) 2025 Marius Schellenberger
|
|
|
|
package jwt
|
|
|
|
import "crypto/rand"
|
|
|
|
func key16() []byte {
|
|
b := make([]byte, 16)
|
|
rand.Read(b)
|
|
return b
|
|
}
|