diff options
author | r <r@freesoftwareextremist.com> | 2020-01-25 10:07:06 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-01-26 06:49:29 +0000 |
commit | bf2cfaf0ede0e9744408f52538fb4bcd87a6d5b8 (patch) | |
tree | 5d3be1dfa65395bddedd2fb6f06a990c23274f00 /util | |
parent | 5fdc7a59b2efc60e35f5421e28986c356810456e (diff) | |
download | bloat-bf2cfaf0ede0e9744408f52538fb4bcd87a6d5b8.tar.gz bloat-bf2cfaf0ede0e9744408f52538fb4bcd87a6d5b8.zip |
Add CSRF protection
Diffstat (limited to 'util')
-rw-r--r-- | util/rand.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/rand.go b/util/rand.go index 8502521..212d6d3 100644 --- a/util/rand.go +++ b/util/rand.go @@ -20,3 +20,7 @@ func NewRandId(n int) string { func NewSessionId() string { return NewRandId(24) } + +func NewCSRFToken() string { + return NewRandId(24) +} |