Censys · JSON Structure

Platform Rsapublickey Structure

RsaPublicKey schema from Censys Platform API

Type: object Properties: 3
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

RsaPublicKey is a JSON Structure definition published by Censys, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

exponent length modulus

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-rsapublickey-structure.json",
  "name": "RsaPublicKey",
  "description": "RsaPublicKey schema from Censys Platform API",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "exponent": {
      "type": "int64",
      "description": "The RSA key's public exponent (e)."
    },
    "length": {
      "type": "int64",
      "description": "Bit-length of the RSA modulus."
    },
    "modulus": {
      "type": "string",
      "description": "The RSA key's modulus (n) in big-endian encoding."
    }
  }
}