-
Notifications
You must be signed in to change notification settings - Fork 178
RUST-1385 Implement explicit encryption #726
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, just one more small comment (but no need for re-review)
8aca5b7
to
bd87e86
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM mod typo
Co-authored-by: Kaitlin Mahar <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
RUST-1385
This implements the
ClientEncryption
struct which provides the explicit encryption API. This required a bit of refactoring to allow aCtx
to be executed independently of aClient
, but is otherwise mostly just data plumbing; the API is just a wrapper around CRUD operations plusCtx
operations.