Skip to content

Commit

Permalink
Merge pull request #2043 from atsign-foundation/add_sharedKeyEnc_to_m…
Browse files Browse the repository at this point in the history
…etadata

fix: Add "sharedKeyEnc" to the metadata to propagate from server to client on receiving end
  • Loading branch information
gkc authored Jul 29, 2024
2 parents 5a54096 + 03187c3 commit 4f2270b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/at_secondary_server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
- fix: respect isEncrypted:false if supplied in the notify: command, and
ensure that the correct value is always transmitted onwards
- fix: info verb no longer lists "beta" features which are now live

- fix: in MonitorVerbHandler, add "sharedKeyEnc" to the metadata to propagate the sharedEncryptedKey in
notifications from the server to the client.
## 3.0.48
- feat Add expiresAt and availableAt params to notify:list response

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ class MonitorVerbHandler extends AbstractVerbHandler {
"ivNonce": atNotification.atMetadata?.ivNonce,
"skeEncKeyName": atNotification.atMetadata?.skeEncKeyName,
"skeEncAlgo": atNotification.atMetadata?.skeEncAlgo,
"sharedKeyEnc": atNotification.atMetadata?.sharedKeyEnc,
};

await _checkAndSend(notification);
Expand Down

0 comments on commit 4f2270b

Please sign in to comment.