golang-github-gorilla-csrf 1.7.2-1 source package in Ubuntu

Changelog

golang-github-gorilla-csrf (1.7.2-1) unstable; urgency=medium

  * New upstream version 1.7.2
  * Update versioned dependencies as per go.mod

 -- Anthony Fok <email address hidden>  Fri, 08 Dec 2023 23:36:30 -0700

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
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-csrf_1.7.2-1.dsc 2.2 KiB fb9cda0de4cd506ab18130638dcad86e1be42e81830f64d26fa7a8889ca7d252
golang-github-gorilla-csrf_1.7.2.orig.tar.gz 34.4 KiB de8125b6865d57d503a244329eeedbeb2b0808eca243ff2a11706ab302bda9e3
golang-github-gorilla-csrf_1.7.2-1.debian.tar.xz 3.0 KiB 60e1a22d36f19519eecb4d71676c1557e779742042ec7a3bdc4a5ef79fb8d3e6

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.