aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2020-01-25 10:07:06 +0000
committerr <r@freesoftwareextremist.com>2020-01-26 06:49:29 +0000
commitbf2cfaf0ede0e9744408f52538fb4bcd87a6d5b8 (patch)
tree5d3be1dfa65395bddedd2fb6f06a990c23274f00 /util
parent5fdc7a59b2efc60e35f5421e28986c356810456e (diff)
downloadbloat-bf2cfaf0ede0e9744408f52538fb4bcd87a6d5b8.tar.gz
bloat-bf2cfaf0ede0e9744408f52538fb4bcd87a6d5b8.zip
Add CSRF protection
Diffstat (limited to 'util')
-rw-r--r--util/rand.go4
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)
+}