Skip to content

Commit 959c1ec

Browse files
committed
Separate package doc
1 parent 731eeba commit 959c1ec

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

doc.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Package httpsign signs HTTP requests and responses as defined in draft-ietf-httpbis-message-signatures.
2+
// See https://datatracker.ietf.org/doc/draft-ietf-httpbis-message-signatures/ for the latest draft version.
3+
//
4+
// For client-side message signing and verification, use the Client wrapper.
5+
// Alternatively you can use SignRequest, VerifyResponse etc. directly, but this is more complicated.
6+
// For server-side operation,
7+
// WrapHandler installs a wrapper around a normal HTTP message handler.
8+
package httpsign

signatures.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
// Package httpsign signs HTTP requests and responses as defined in draft-ietf-httpbis-message-signatures.
2-
// See https://www.ietf.org/archive/id/draft-ietf-httpbis-message-signatures-07.html.
3-
//
4-
// For client-side message signing and verification, use the Client wrapper.
5-
// Alternatively, use SignRequest, VerifyResponse directly, but this is more complicated.
6-
// For server-side operation,
7-
// WrapHandler installs a wrapper around a normal HTTP message handler.
81
package httpsign
92

103
import (

0 commit comments

Comments
 (0)