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