golang-github-gorilla-csrf 1.6.2-4 source package in Ubuntu

Changelog

golang-github-gorilla-csrf (1.6.2-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + golang-github-gorilla-csrf-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Sat, 17 Dec 2022 15:59:58 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-csrf_1.6.2-4.dsc 1.9 KiB 701153954044b60765671766c305818c79ca7e7ad44c5d6c1684f0b3030b9bc4
golang-github-gorilla-csrf_1.6.2.orig.tar.gz 21.1 KiB b738f87c8c78391e366a302398a55623c0dea8461ddfeedbb98f52abb6195584
golang-github-gorilla-csrf_1.6.2-4.debian.tar.xz 2.8 KiB 6d0db94d2bb87cad076b809c1fb74bb76e5b37cdfb2b39e2c0069f18777e437e

Available diffs

No changes file available.

Binary packages built by this source

golang-github-gorilla-csrf-dev: Cross Site Request Forgery (CSRF) prevention middleware for Go

 gorilla/csrf is a HTTP middleware library that provides cross-site request
 forgery (CSRF) protection. It includes:
 .
  * The csrf.Protect middleware/handler provides CSRF protection on routes
    attached to a router or a sub-router.
  * A csrf.Token function that provides the token to pass into your response,
    whether that be a HTML form or a JSON response body.
  * ... and a csrf.TemplateField helper that you can pass into your
    html/template templates to replace a {{ .csrfField }} template tag
    with a hidden input field.
 .
 gorilla/csrf is designed to work with any Go web framework, including:
 .
  * The Gorilla toolkit
  * Go's built-in net/http package
  * Goji - see the tailored fork https://github.com/goji/csrf
  * Gin
  * Echo
  * ... and any other router/framework that rallies around Go's http.Handler
    interface.
 .
 gorilla/csrf is also compatible with middleware 'helper' libraries
 like Alice and Negroni.