-
Notifications
You must be signed in to change notification settings - Fork 48
Message level Encryption for response #176
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
base: future
Are you sure you want to change the base?
Conversation
MLE.md
Outdated
|
||
- **Variable**: `responseMlePrivateKey` | ||
- **Type**: `PrivateKey` | ||
- **Description**: Direct private key object for response decryption. **Note**: Only PEM format is supported for the private key object. |
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.
change content to "Direct private key object for response decryption. Note: It supports either JWK private key Object or only PEM format data is supported for the private key object."
MLE.md
Outdated
### Object Configuration | ||
|
||
- **Variable**: `mapToControlMLEonAPI` | ||
- **Type**: `Object` or `Map` with string keys and string/boolean values |
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.
Type: Map<String, String>. Example: Object
or Map
with string keys and string values
MLE.md
Outdated
- **Variable**: `mapToControlMLEonAPI` | ||
- **Type**: `Object` or `Map` with string keys and string/boolean values | ||
- **Description**: Overrides global MLE settings for specific APIs. The key is the API function name, and the value controls both request and response MLE. | ||
- **Example**: `{ "apiFunctionName": "true::true" }` or `{ "apiFunctionName": true }` |
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.
Example: { "apiFunctionName": "true::true" }
or { "apiFunctionName": "true" }
MLE.md
Outdated
|
||
#### Structure of Values in Object: | ||
|
||
(i) **String format: "requestMLE::responseMLE"** - Control both request and response MLE |
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.
only string formal allowed as per new rule. Boolean is for backward compatible. So don't mention it explicitly.
MLE.md
Outdated
- `"::false"` - Use global setting for request, disable response MLE | ||
- `"false::"` - Disable request MLE, use global setting for response | ||
|
||
(ii) **Boolean format** - Control request MLE only (response uses global setting) |
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.
removed boolean format word. And changed the value in string format only
No description provided.