From d99e842df2e06cbf17a69ec2d076d7752e566e06 Mon Sep 17 00:00:00 2001 From: Zola Gonano Date: Tue, 30 Apr 2024 11:15:37 +0000 Subject: [PATCH] Add revocation certificate format document --- docs/Formats/revocation-certificate-format.md | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/Formats/revocation-certificate-format.md diff --git a/docs/Formats/revocation-certificate-format.md b/docs/Formats/revocation-certificate-format.md new file mode 100644 index 0000000..eda24fc --- /dev/null +++ b/docs/Formats/revocation-certificate-format.md @@ -0,0 +1,23 @@ +--- +title: Revocation Certificate Format +layout: default +parent: Formats +--- + +### Revocation Certificate Format + +Revocation certificates contain essential details regarding the revocation event. Below are the fields and their descriptions: + +- `issuer`: Identifies the entity that issued the certificate. +- `revocation_date`: Specifies the date when the revocation occurred, represented as a Unix timestamp. +- `revocation_reason`: Provides the reason for the revocation, explaining why the public key is being revoked. + +``` ++-------------------------+ +| issuer | +|-------------------------| +| revocation_date | +|-------------------------| +| revocation_reason | ++-------------------------+ +```