Versions in this module Expand all Collapse all v0 v0.1.0 Jul 2, 2024 Changes in this version + func ParsePublicKey(encodedKey string) (ed25519.PublicKey, error) + type Signer struct + func NewSigner(signingKey ed25519.PrivateKey) *Signer + func (s *Signer) Client(client connect.HTTPClient) *SigningClient + func (s *Signer) Sign(req *http.Request) error + type SigningClient struct + func (c *SigningClient) Do(req *http.Request) (*http.Response, error) + type Verifier struct + func NewVerifier(verificationKey ed25519.PublicKey) *Verifier + func (v *Verifier) Middleware(next http.Handler) http.Handler + func (v *Verifier) Verify(r *http.Request) error