Censys · Schema

RSACryptographicKey

RSACryptographicKey schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat Huntingcyber-threat-intelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
exponent string
length integer
modulus string
View JSON Schema on GitHub

JSON Schema

platform-rsacryptographickey-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-rsacryptographickey-schema.json",
  "title": "RSACryptographicKey",
  "description": "RSACryptographicKey schema from Censys Platform API",
  "type": "object",
  "properties": {
    "exponent": {
      "format": "base64",
      "type": "string"
    },
    "length": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "modulus": {
      "format": "base64",
      "type": "string"
    }
  },
  "additionalProperties": false
}