diff options
Diffstat (limited to 'vendor/github.com/gorilla/csrf')
-rw-r--r-- | vendor/github.com/gorilla/csrf/AUTHORS | 20 | ||||
-rw-r--r-- | vendor/github.com/gorilla/csrf/LICENSE | 3 | ||||
-rw-r--r-- | vendor/github.com/gorilla/csrf/go.mod | 7 |
3 files changed, 28 insertions, 2 deletions
diff --git a/vendor/github.com/gorilla/csrf/AUTHORS b/vendor/github.com/gorilla/csrf/AUTHORS new file mode 100644 index 0000000..4e84c37 --- /dev/null +++ b/vendor/github.com/gorilla/csrf/AUTHORS @@ -0,0 +1,20 @@ +# This is the official list of gorilla/csrf authors for copyright purposes. +# Please keep the list sorted. + +adiabatic <adiabatic@users.noreply.github.com> +Google LLC (https://opensource.google.com) +jamesgroat <james@groat.com> +Joshua Carp <jm.carp@gmail.com> +Kamil Kisiel <kamil@kamilkisiel.net> +Kevin Burke <kev@inburke.com> +Kévin Dunglas <dunglas@gmail.com> +Kristoffer Berdal <web@flexd.net> +Martin Angers <martin.n.angers@gmail.com> +Matt Silverlock <matt@eatsleeprepeat.net> +Philip I. Thomas <mail@philipithomas.com> +Richard Musiol <mail@richard-musiol.de> +Seth Hoenig <seth.a.hoenig@gmail.com> +Stefano Vettorazzi <stefanovc@gmail.com> +Wayne Ashley Berry <wayneashleyberry@gmail.com> +田浩浩 <llitfkitfk@gmail.com> +陈东海 <cdh_cjx@163.com> diff --git a/vendor/github.com/gorilla/csrf/LICENSE b/vendor/github.com/gorilla/csrf/LICENSE index f407b7f..c1eb344 100644 --- a/vendor/github.com/gorilla/csrf/LICENSE +++ b/vendor/github.com/gorilla/csrf/LICENSE @@ -1,5 +1,4 @@ -Copyright (c) 2015, Matt Silverlock (matt@eatsleeprepeat.net) All rights -reserved. +Copyright (c) 2015-2018, The Gorilla Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/vendor/github.com/gorilla/csrf/go.mod b/vendor/github.com/gorilla/csrf/go.mod new file mode 100644 index 0000000..2d2ce4d --- /dev/null +++ b/vendor/github.com/gorilla/csrf/go.mod @@ -0,0 +1,7 @@ +module github.com/gorilla/csrf + +require ( + github.com/gorilla/context v1.1.1 + github.com/gorilla/securecookie v1.1.1 + github.com/pkg/errors v0.8.0 +) |