Skip to content

Commit 350ed64

Browse files
committed
[Confidential Ledger] Fix library link in receipt verification article
1 parent ccfd04b commit 350ed64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/confidential-ledger/verify-write-transaction-receipts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The third step is to verify that the cryptographic signature produced over the r
4848

4949
1. Decode the base64 string `signature` into an array of bytes.
5050
2. Extract the ECDSA public key from the signing node certificate `cert`.
51-
3. Verify that the signature over the root of the Merkle Tree (computed using the instructions in the previous subsection) is authentic using the extracted public key from the previous step. This step effectively corresponds to a standard [digital signature](https://wikipedia.org/wiki/Digital_signature) verification process using ECDSA. There are many libraries in the most popular programming languages that allow verifying an ECDSA signature using a public key certificate over some data (for example, [ecdsa](https://pypi.org/project/ecdsa/) for Python).
51+
3. Verify that the signature over the root of the Merkle Tree (computed using the instructions in the previous subsection) is authentic using the extracted public key from the previous step. This step effectively corresponds to a standard [digital signature](https://wikipedia.org/wiki/Digital_signature) verification process using ECDSA. There are many libraries in the most popular programming languages that allow verifying an ECDSA signature using a public key certificate over some data (for example, the [cryptography library](https://cryptography.io/en/latest/) for Python).
5252

5353
### Verify signing node certificate endorsement
5454

0 commit comments

Comments
 (0)