Censys · Schema

Ssh_AlgorithmSelection

Ssh_AlgorithmSelection schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
client_to_server_alg_group object
host_key_algorithm string
kex_algorithm string
server_to_client_alg_group object
View JSON Schema on GitHub

JSON Schema

platform-ssh-algorithmselection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-ssh-algorithmselection-schema.json",
  "title": "Ssh_AlgorithmSelection",
  "description": "Ssh_AlgorithmSelection schema from Censys Platform API",
  "type": "object",
  "properties": {
    "client_to_server_alg_group": {
      "$ref": "#/components/schemas/Ssh_AlgorithmSelection_DirectionAlgorithms"
    },
    "host_key_algorithm": {
      "type": "string"
    },
    "kex_algorithm": {
      "type": "string"
    },
    "server_to_client_alg_group": {
      "$ref": "#/components/schemas/Ssh_AlgorithmSelection_DirectionAlgorithms"
    }
  },
  "additionalProperties": false
}