1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-04-07 07:20:07 +02:00

17 lines
206 B
Go
Raw Normal View History

2017-03-27 21:14:38 -04:00
package cookie
import (
"crypto/rand"
"fmt"
)
func Nonce() (nonce string, err error) {
b := make([]byte, 16)
_, err = rand.Read(b)
if err != nil {
return
}
nonce = fmt.Sprintf("%x", b)
return
}