Skip to content

Commit bf3f215

Browse files
Merge pull request #234120 from divargas-msft/patch-4
[Doc-a-thon] Updating create-client-certificate.md
2 parents a220b4a + 2485317 commit bf3f215

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

articles/confidential-ledger/create-client-certificate.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,39 @@ services: confidential-ledger
55
author: msmbaldwin
66
ms.service: confidential-ledger
77
ms.topic: overview
8-
ms.date: 11/14/2022
8+
ms.date: 04/11/2023
99
ms.author: mbaldwin
1010

1111
---
1212
# Creating a Client Certificate
1313

1414
The Azure confidential ledger APIs require client certificate-based authentication. Only those certificates added to an allowlist during ledger creation or a ledger update can be used to call the confidential ledger Functional APIs.
1515

16-
You will need a certificate in PEM format. You can create more than one certificate and add or delete them using ledger Update API.
16+
You need a certificate in PEM format. You can create more than one certificate and add or delete them using ledger Update API.
1717

1818
## OpenSSL
1919

2020
We recommend using OpenSSL to generate certificates. If you have git installed, you can run OpenSSL in the git shell. Otherwise, you can install OpenSSL for your OS.
2121

22-
- **Windows**: Install [chocolatey for Windows](https://chocolatey.org/install), open a PowerShell terminal windows in admin mode, and run `choco install openssl`. Alternatively, you can install OpenSSL for Windows directly from [here](http://gnuwin32.sourceforge.net/packages/openssl.htm).
23-
- **Linux**: Run `sudo apt-get install openssl`
22+
- **Windows**: Install [Chocolatey for Windows](https://chocolatey.org/install), open a PowerShell terminal window in admin mode, and run `choco install openssl`. Alternatively, you can install OpenSSL for Windows directly from [here](http://gnuwin32.sourceforge.net/packages/openssl.htm).
23+
- **Linux**:
24+
- Ubuntu:
25+
26+
```bash
27+
sudo apt-get install openssl
28+
```
29+
30+
- RHEL/CentOS:
31+
32+
```bash
33+
sudo yum install openssl -y
34+
```
35+
36+
- SUSE:
37+
38+
```bash
39+
sudo zypper install openssl
40+
```
2441

2542
You can then generate a certificate by running `openssl` in a Bash or PowerShell terminal window:
2643

0 commit comments

Comments
 (0)