-
Notifications
You must be signed in to change notification settings - Fork 38
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
feat(encryption): add rest api translations #940
base: develop
Are you sure you want to change the base?
Conversation
Abhinandan-Purkait
commented
Feb 20, 2025
- Add openapi changes
"".to_string(), | ||
))? | ||
.into(); | ||
Ok(Self { cipher, key }) |
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.
Shall we validate the encryption key vector and len match?
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.
I think it's done in data-plane. But yes we can do that.
key_name: | ||
description: |- | ||
Name of the key. | ||
type: string |
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.
Should we add max name len?
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.
We can probably? Should I?
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.
Could you lint the openapi file as a separate commit? Example: bdd6649
|
f13a05f
to
236342f
Compare
236342f
to
bc0b4fc
Compare
Signed-off-by: Abhinandan Purkait <[email protected]>
bc0b4fc
to
e81f3cb
Compare
Signed-off-by: Abhinandan Purkait <[email protected]>
Done. |