Skip to content

Commit 69fea9e

Browse files
authored
Merge pull request #506 from ForgeRock/SDKS-4420
SDKS-4420 Default StrongBox to false
2 parents fc546fb + c3b15a4 commit 69fea9e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

forgerock-core/src/main/java/org/forgerock/android/auth/encrypt/SecretKeyEncryptor.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2024. PingIdentity. All rights reserved.
2+
* Copyright (c) 2024 - 2025 ForgeRock. All rights reserved.
33
*
44
* This software may be modified and distributed under the terms
55
* of the MIT license. See the LICENSE file for details.
@@ -61,7 +61,7 @@ class SecretKeyEncryptorConfig {
6161
var throwWhenEncryptError = true
6262
var symmetricKeySize = 256
6363
var invalidatedByBiometricEnrollment = true
64-
var strongBoxPreferred = true
64+
var strongBoxPreferred = false //Default to false to support more devices
6565
}
6666

6767
/**

0 commit comments

Comments
 (0)