From e29ae7b760bde3c733c46a6521eadc1207b2f62c Mon Sep 17 00:00:00 2001 From: Shreya Vissamsetti Date: Mon, 25 Mar 2024 11:30:27 -0700 Subject: [PATCH] chain (#25) --- umad-02-keys-and-authentication.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/umad-02-keys-and-authentication.md b/umad-02-keys-and-authentication.md index 7aa36ac..a17daeb 100644 --- a/umad-02-keys-and-authentication.md +++ b/umad-02-keys-and-authentication.md @@ -31,10 +31,10 @@ endpoint returns a JSON object with the following structure: ```json { - // Used to verify signatures from VASP1. Hex string representation of a DER-encoded X.509 certificate. - "signingCertificate": string, - // Used to encrypt TR info sent to VASP1. Hex string representation of a DER-encoded X.509 certificate. - "encryptionCertificate": string, + // Used to verify signatures from VASP1. List of certificates (hex-encoded X.509 DER) ordered from leaf to root. + "signingCertChain": string[], + // Used to encrypt TR info sent to VASP1. List of certificates (hex-encoded X.509 DER) ordered from leaf to root. + "encryptionCertChain": string[], // [Optional] Sec since epoch at which these certificates must be revalidated or refreshed. // If not specified, the certificates will not be cached. "expirationTimestamp": number