// Copyright (C) 2021 Marius Schellenberger package cmd import ( "crypto/rand" "encoding/hex" ) func password() (string, error) { b := make([]byte, 16) _, err := rand.Read(b) return hex.EncodeToString(b), err }