ActivityPub Utilities Signature Verifier

This server allows you to test your HTTP signature implementation. Just send a request of any method to an endpoint that is not any of the following:

The server will respond with a JSON message that includes some info sent to the server as well as whether or not the signature is valid. Example:

{
	"status": 200,
	"message": "HTTP signature is valid :3",
	"method": "GET",
	"path": "/heck",
	"address": "192.168.2.5",
	"valid": true,
	"headers": {
		"Host": "valtest.barkshark.xyz",
		"User-Agent": "http.rb/5.1.1 (Mastodon/4.3.0-alpha.3+glitch; +https://barkshark.xyz/; im gay)",
		"Accept": "application/activity+json",
		"Accept-Encoding": "identity",
		"Content-Type": "application/activity+json",
		"Date": "Wed, 03 Apr 2024 17:24:50 GMT",
		"Signature": "[didn't wanna include this because it's so damn long]"
	}
}

Powered by ActivityPub Utilities/0.2.3