-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementing GDPR #49
Labels
Comments
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Apr 19, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Apr 20, 2018
…update(), loadEvents(), subscribe()
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Apr 23, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Apr 23, 2018
Fixed with #48 |
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
May 1, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
May 1, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
May 2, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
May 3, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
May 3, 2018
… & decryptEvents function name
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jun 5, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jun 6, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jun 18, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jun 25, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jun 25, 2018
…ith Java client
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jun 26, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jun 26, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jun 26, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jul 2, 2018
dartvandru
added a commit
to dartvandru/eventuate-client-nodejs
that referenced
this issue
Jul 3, 2018
…expect error in subscribe()
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The save() and update() operations need an optional encryption key parameter that they use to encrypt events.
The parameter is an object with the following fields: (encryptionKeyId, …)
The client is instantiated with an optional Encryption object that implements encrypt(encryptionKeyId, eventdata) and decrypt(encryptedEventData) operations.
The encrypted event is prefixed with the encryptionKeyId. This enables the find() and subscribe() operations to decrypt the events.
The text was updated successfully, but these errors were encountered: