Skip to content

Commit bf84a1e

Browse files
authored
changes accommodating the WrappedKeyAlgoIdentifier module, Fixes AB#3297251 (#2667)
[AB#3297251](https://identitydivision.visualstudio.com/fac9d424-53d2-45c0-91b5-ef6ba7a6bf26/_workitems/edit/3297251)
1 parent b90b5ca commit bf84a1e

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

changelog.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
vNext
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)
@@ -8,7 +12,7 @@ vNext
812

913
Version 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)

common4j/src/main/com/microsoft/identity/common/java/exception/ClientException.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
*

common4j/src/main/com/microsoft/identity/common/java/opentelemetry/SpanName.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,5 @@ public enum SpanName {
6464
ProcessCrossCloudRedirect,
6565
SwitchBrowserResume,
6666
SwitchBrowserProcess,
67+
WrappedKeyAlgorithmIdentifier
6768
}

0 commit comments

Comments
 (0)