File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
common4j/src/main/com/microsoft/identity/common/java Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 11vNext
22----------
3+ - [MINOR] changes accommodating the WrappedKeyAlgoIdentifier module (#2667)
4+
5+ Version 21.2.0
6+ ----------
37- [MINOR] Implement a WebView handler to facilitate broker app installation via the Play Store (#2643)
48- [MINOR] Add Get AAD device ID API for resource account (#2644)
59- [MINOR] Expose a JavaScript API in brokered Webviews to facilitate Improved Same Device NumberMatch (#2617)
812
913Version 21.1.0
1014----------
11- - [PATCH] Allow generating wrapping key without PURPOSE_WRAP_KEY with Flight (#2633))
15+ - [PATCH] Allow generating wrapping key without PURPOSE_WRAP_KEY with Flight (#2633)
1216- [MINOR] Adding a state parameter to prevent phish attacks, in “switch_browser” flow. (#2631)
1317- [MINOR] Move camera logic to CameraPermissionRequestHandler and add SdmQrPinManager (#2630)
1418- [MINOR] Pass Work Profile existence, OS Version, and Manufacturer to ESTS (#2627)
Original file line number Diff line number Diff line change @@ -496,6 +496,11 @@ public class ClientException extends BaseException {
496496 */
497497 public static final String NO_BROWSERS_AVAILABLE = "no_browsers_available" ;
498498
499+ /**
500+ * The device doesn't support hardware wrapped key import.
501+ */
502+ public static final String DEVICE_NOT_SUPPORT_HARDWARE_WRAPPED_KEY_IMPORT = "device_not_supported_hardware_wrapped_key_import" ;
503+
499504 /**
500505 * Constructor of ClientException.
501506 *
Original file line number Diff line number Diff line change @@ -64,4 +64,5 @@ public enum SpanName {
6464 ProcessCrossCloudRedirect ,
6565 SwitchBrowserResume ,
6666 SwitchBrowserProcess ,
67+ WrappedKeyAlgorithmIdentifier
6768}
You can’t perform that action at this time.
0 commit comments