Skip to content

Commit 483edcf

Browse files
committed
Updating readme text
1 parent 386bdb1 commit 483edcf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,8 @@ Output:
364364
"path": {
365365
"to": {
366366
"foo": {
367-
"sensitiveField1": "sensitiveValue1",
368-
"sensitiveField2": "sensitiveValue2"
367+
"sensitive": "this is a secret",
368+
"sensitive2": "this is a super secret!"
369369
}
370370
}
371371
}
@@ -405,8 +405,8 @@ Example:
405405
```js
406406
const payload =
407407
"{" +
408-
' "sensitiveField1": "sensitiveValue1",' +
409-
' "sensitiveField2": "sensitiveValue2"' +
408+
' "sensitive": "this is a secret",' +
409+
' "sensitive2": "this is a super secret!"' +
410410
"}";
411411
const jwe = new (require("mastercard-client-encryption").JweEncryption)(config);
412412
//
@@ -464,8 +464,8 @@ Output:
464464

465465
```json
466466
{
467-
"sensitiveField1": "sensitiveValue1",
468-
"sensitiveField2": "sensitiveValue2"
467+
"sensitive": "this is a secret",
468+
"sensitive2": "this is a super secret!"
469469
}
470470
```
471471

0 commit comments

Comments
 (0)