RepoCloudflare (Workers AI)Cloudflare (Workers AI)published Oct 20, 2023seen 1w

cloudflare/privacypass-origin

TypeScript

Open original ↗

Captured source

source ↗
published Oct 20, 2023seen 1wcaptured 1whttp 200method plain

cloudflare/privacypass-origin

Description: A TypeScript Origin for the Privacy Pass Authentication Protocol

Language: TypeScript

License: NOASSERTION

Stars: 12

Forks: 5

Open issues: 5

Created: 2023-10-20T13:00:47Z

Pushed: 2026-06-12T20:29:35Z

Default branch: main

Fork: no

Archived: no

README:

privacypass-origin

This Worker implements the challenge and redemption protocols in Privacy Pass. A live demonstration of this worker can be found here.

Overview

The test server has two HTTP endpoints:

  • GET /login: This API will return a static HTML page representing the application, which is a simple (and non-functional) login form. It also returns a WWW-Authenticate: PrivateToken challenge as defined by Privacy Pass authentication.
  • GET /login (+Authorization: PrivateToken): This API is used by the application for performing a "login" request. Clients will interact with this API upon submitting the login form details.
  • If the login request contains a Privacy Pass token, the token is validated before accepting the request.
  • If not, it's the request above.

When verifying Privacy Pass tokens, the server will first fetch the token verification key from the issuer (as identified by ISSUER_NAME).

That's it!

Configuration

To deploy and interact with this test server, you need to configure the following Cloudflare Worker variables:

  • ISSUER_NAME: This is the name of the Privacy Pass issuer server that the origin trusts for issuing tokens. This is a public variable.

Dependencies

The test server uses existing APIs for creating Privacy Pass token challenges and verifying the resulting tokens. For example, when verifying a token, one can use standard WebCrypto APIs for verifying the Token signature against the Issuer's public key.

Notability

notability 3.0/10

Routine repo, not AI-related, low stars.