Files
crypto-tools/public/toolbox-app.json
T
zemion 82bb01b13f
Verify / verify (push) Canceled after 0s
Release Crypto Tools 0.2.0
2026-09-02 10:40:23 +02:00

69 lines
1.9 KiB
JSON

{
"$schema": "https://git.add-ideas.de/lotobo/toolbox-sdk/raw/branch/main/schemas/toolbox-app.v1.schema.json",
"schemaVersion": 1,
"id": "de.add-ideas.crypto-tools",
"name": "Crypto Tools",
"version": "0.2.0",
"description": "Inspect keys, certificates, PKCS #12 and signatures locally in the browser.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["security", "cryptography", "developer"],
"tags": [
"x509",
"certificate",
"pkcs12",
"pfx",
"jwk",
"signature",
"crypto"
],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
"embedding": "unsupported"
},
"requirements": {
"secureContext": true,
"workers": false,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{
"mediaType": "application/pem-certificate-chain",
"extensions": [".pem", ".crt", ".cer", ".csr", ".key"]
},
{ "mediaType": "application/pkix-cert", "extensions": [".der", ".cer"] },
{ "mediaType": "application/pkcs12", "extensions": [".p12", ".pfx"] },
{
"mediaType": "application/json",
"extensions": [".json", ".jwk", ".jwks"]
}
],
"produces": [
{ "mediaType": "application/json", "extensions": [".json"] },
{ "mediaType": "text/plain", "extensions": [".pem", ".txt"] }
]
},
"capabilities": { "required": [], "optional": ["web-crypto"] },
"privacy": {
"processing": "local",
"fileUploads": true,
"telemetry": false,
"label": "Inputs stay in this browser; nothing is uploaded."
},
"source": {
"repository": "https://git.add-ideas.de/lotobo/crypto-tools",
"license": "GPL-3.0-or-later"
},
"actions": [
{
"id": "source",
"label": "Source",
"url": "https://git.add-ideas.de/lotobo/crypto-tools"
}
]
}