69 lines
1.9 KiB
JSON
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"
|
|
}
|
|
]
|
|
}
|