ksp validate
DocsCLIksp validate

ksp validate

Command Reference

Validate KSP configuration files, certificate chains, or custom framing schemas against official RFC constraints.

Protocol Utilities

Purpose

Validate KSP configuration files, certificate chains, or custom framing schemas against official RFC constraints.

Syntax

Command-line specification
bash / powershell
ksp validate <FILE_PATH> [OPTIONS]

Arguments

ArgumentDescription
<FILE_PATH>Path to `.toml` config, `.cert` certificate, or `.json` schema file.

Options & Flags

Option FlagDescription
--strictTreat non-fatal warnings and deprecated cipher selections as validation errors.

Example Usage

Example command
ksp validate ./server.cert --strict

Expected Output

  [+] Validating certificate structure: server.cert
  [+] Signature Algorithm: Ed25519
  [+] Subject Verification: OK
  [+] Expiration Check: OK (Valid for 364 more days)
  [✔] Certificate is 100% compliant with RFC § 6 binary layout.
Implementation Notes

Prevents downtime by catching configuration syntax flaws during CI/CD pre-commit hooks before deployment.