Release Crypto Tools 0.2.0
Verify / verify (push) Canceled after 0s

This commit is contained in:
2026-09-02 10:40:23 +02:00
parent 4b75f819e2
commit 82bb01b13f
37 changed files with 3673 additions and 140 deletions
+45 -3
View File
@@ -3,12 +3,20 @@
"schemaVersion": 1,
"id": "de.add-ideas.crypto-tools",
"name": "Crypto Tools",
"version": "0.1.0",
"description": "Inspect keys, certificates and signatures locally in the browser.",
"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", "jwk", "signature", "crypto"],
"tags": [
"x509",
"certificate",
"pkcs12",
"pfx",
"jwk",
"signature",
"crypto"
],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
@@ -21,6 +29,40 @@
"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,