Generate CSR ++++++++++++++++ .. _generate_csr: Topic: josev/cs This message is intended to request the OEM to generate a key pair by the TPM and the corresponding certificate signing request CSR to perform a certificate installation. .. jsonschema:: ../../../schemas/GenerateCsrRequest.json :hide_key: /**/additionalProperties Example:: { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "generate_csr", "type": "request", "data": { "certificate_type": "charging_station_certificate", # v2g_certificate "common_name": "9783161484100", "organization_name": "EcoG", "country_name": "DE", "algorithm": "ECDSA_SHA256", # Optional } } ---------- .. jsonschema:: ../../../schemas/GenerateCsrResponse.json :hide_key: /**/additionalProperties Topic: cs/josev Example:: { "id": "57828133-8cfe-477d-b829-0b60aff90c2a", "name": "generate_csr", "type": "response", "data": { "status": "accepted", # rejected "csr": "-----BEGIN CERTIFICATE REQUEST...", # Optional } } ----------