Skip to content

Commit

Permalink
docs: Addressed issues found in review
Browse files Browse the repository at this point in the history
  • Loading branch information
hvge committed Sep 25, 2024
1 parent 5ae1749 commit 05a90c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/PowerAuth-SDK-for-Android.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ The `PowerAuthClientConfiguration.Builder` class contains configuration for a HT

### Keychain configuration

The `PowerAuthKeychainConfiguration.builder` class contains configuration for a keychain-based storage used by `PowerAuthSDK` class internally. The configuration contains the following properties:
The `PowerAuthKeychainConfiguration.Builder` class contains configuration for a keychain-based storage used by `PowerAuthSDK` class internally. The configuration contains the following properties:

- `linkBiometricItemsToCurrentSet()` - Function specifies whether the item protected with the biometry is invalidated if fingers are added or removed, or if the user re-enrolls for face. See [Biometry Factor-Related Key Lifetime](#biometry-factor-related-key-lifetime) chapter for more details.
- `confirmBiometricAuthentication()` - Function specifies whether the user's confirmation will be required after the successful biometric authentication. See [Biometric Authentication Confirmation](#biometric-authentication-confirmation) chapter for more details.
Expand Down Expand Up @@ -937,15 +937,15 @@ The activation record is created using an external channel, such as the Internet

#### `ActivationStatus.State_Pending_Commit`

The activation record is created and key exchange between the client and server already took place, but the activation record needs additional approval before it can be used.
The activation record is created, and the key exchange between the client and server has already taken place, but the activation record on the server requires additional approval before it can be used. This approval is typically performed through an internet banking platform by the client or handled by an authorized representative in a back office system.

#### `ActivationStatus.State_Active`

The activation record is created and active. It is ready to be used for typical use-cases, such as generating signatures.

#### `ActivationStatus.State_Blocked`

The activation record is blocked and cannot be used for most of the use-cases, such as generating signatures. It can be unblocked and activated again.
The activation record is blocked and cannot be used for most use-cases, such as generating signatures. While it can be unblocked and activated again, the unblock process cannot be performed locally on the mobile device and requires intervention through an external system, such as internet banking or a back office platform.

#### `ActivationStatus.State_Removed`

Expand Down
4 changes: 2 additions & 2 deletions docs/PowerAuth-SDK-for-iOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -580,15 +580,15 @@ The activation record is created using an external channel, such as the Internet
#### `PowerAuthActivationState.pendingCommig`
The activation record is created and key exchange between the client and server already took place, but the activation record needs additional approval before it can be used.
The activation record is created, and the key exchange between the client and server has already taken place, but the activation record on the server requires additional approval before it can be used. This approval is typically performed through an internet banking platform by the client or handled by an authorized representative in a back office system.
#### `PowerAuthActivationState.active`
The activation record is created and active. It is ready to be used for typical use-cases, such as generating signatures.
#### `PowerAuthActivationState.blocked`
The activation record is blocked and cannot be used for most of the use-cases, such as generating signatures. It can be unblocked and activated again.
The activation record is blocked and cannot be used for most use-cases, such as generating signatures. While it can be unblocked and activated again, the unblock process cannot be performed locally on the mobile device and requires intervention through an external system, such as internet banking or a back office platform.
#### `PowerAuthActivationState.removed`
Expand Down

0 comments on commit 05a90c6

Please sign in to comment.