{
  "name": "SSL Certificate Validation",
  "version": "1.0",
  "description": "Decode SSL certificate details, verify the certificate chain, and check expiration dates.",
  "use_case": "Validate SSL/TLS certificates before deployment to catch expiration issues and chain problems.",
  "keywords": ["SSL certificate", "TLS validation", "certificate expiry", "HTTPS check"],
  "tools": [
    {
      "step": 1,
      "name": "Base64 Encoder",
      "slug": "base64-encoder",
      "action": "Decode PEM-encoded certificate from Base64 to inspect raw data",
      "params": {
        "mode": "decode",
        "input": "PEM certificate content (between BEGIN/END markers)"
      }
    },
    {
      "step": 2,
      "name": "JSON Formatter",
      "slug": "json-formatter",
      "action": "Format parsed certificate metadata (subject, issuer, SANs) as JSON",
      "params": {
        "input": "Certificate metadata JSON"
      }
    },
    {
      "step": 3,
      "name": "Timestamp Converter",
      "slug": "timestamp-converter",
      "action": "Convert certificate notBefore/notAfter dates to verify validity period",
      "params": {
        "input": "Certificate expiry timestamp"
      }
    }
  ]
}
