storj/pkg/macaroon/caveat.go

16 lines
304 B
Go
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package macaroon
import (
2019-05-14 22:08:52 +01:00
"crypto/rand"
)
// NewCaveat returns a Caveat with a random generated nonce.
2019-05-14 22:08:52 +01:00
func NewCaveat() (Caveat, error) {
var buf [8]byte
2019-05-14 22:08:52 +01:00
_, err := rand.Read(buf[:])
return Caveat{Nonce: buf[:]}, err
}