oauth2_proxy/pkg/encryption/nonce.go

18 lines
275 B
Go
Raw Normal View History

2019-05-24 16:06:48 +00:00
package encryption
2017-03-28 01:14:38 +00:00
import (
"crypto/rand"
"fmt"
)
2018-11-29 14:26:41 +00:00
// Nonce generates a random 16 byte string to be used as a nonce
2017-03-28 01:14:38 +00:00
func Nonce() (nonce string, err error) {
b := make([]byte, 16)
_, err = rand.Read(b)
if err != nil {
return
}
nonce = fmt.Sprintf("%x", b)
return
}