Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
examples/signature-agent-card-and-registry/target/*
examples/signature-agent-card-and-registry/build/*
4 changes: 2 additions & 2 deletions examples/httpie-web-bot-auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ HTTPIE_WBA_KEY="/path/to/jwk.json" http 'http+wba://example.com'

### Requirements

* [Python 3.13](https://www.python.org/downloads/)
* [uv](https://docs.astral.sh/uv/getting-started/installation/) - Python package manager
- [Python 3.13](https://www.python.org/downloads/)
- [uv](https://docs.astral.sh/uv/getting-started/installation/) - Python package manager

### Build

Expand Down
6 changes: 3 additions & 3 deletions examples/signature-agent-card-and-registry/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Example Signature Agent Card and Registry on Cloudflare Workers
# Example Signature Agent Card and Registry on Cloudflare Workers

This deploys a registry and a signature agent card on the same host: a Cloudflare worker.

Expand All @@ -8,8 +8,8 @@ Instructions:
- Navigate to `http://localhost:8787/.well-known/http-message-signatures-directory` to view a generated signature agent card with an example directory.
- Navigate to `http://localhost:8787` to view a registry containing this host. Note: this will not be generated until after you've visited `/.well-known/http-message-signatures-directory`, since the card will not exist until then.

This configuration allows you to attach multiple routes and generate an SAC for each one, all viewable in the registry.
This configuration allows you to attach multiple routes and generate an SAC for each one, all viewable in the registry.

## Warning

The JSON web keys produced by this worker are *not cryptographically secure*. You should not use any of the private or public keys generated for message signing or verifying outside of this host. This example is only suitable for insecure use.
The JSON web keys produced by this worker are _not cryptographically secure_. You should not use any of the private or public keys generated for message signing or verifying outside of this host. This example is only suitable for insecure use.
Loading