Skip to content

Commit

Permalink
Fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
banterCZ committed Sep 12, 2023
1 parent 288225a commit 9f08baa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/Configuration-Properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The PowerAuth Server uses the following public configuration properties:
| `powerauth.service.crypto.activationValidityInMilliseconds` | `120000` | Default activation validity period in milliseconds |
| `powerauth.service.crypto.signatureMaxFailedAttempts` | `5` | Maximum failed attempts for signature verification |
| `powerauth.service.crypto.requestExpirationInMilliseconds` | `60000` | Expiration for ECIES and MAC token requests. |
| `powerauth.service.crypto.requestExpirationExtendedInMilliseconds` | `7200000` | Expiration for ECIES and MAC token requests for protocol versions 3.1 and older. |
| `powerauth.service.crypto.requestExpirationInMillisecondsExtended` | `7200000` | Expiration for ECIES and MAC token requests for protocol versions 3.1 and older. |
| `powerauth.service.crypto.replayVerificationService` | `default` | Request replay verification service, options: `default`, `none` |
| `powerauth.service.token.timestamp.validity` | `7200000` | PowerAuth MAC token timestamp validity in milliseconds |
| `powerauth.service.recovery.maxFailedAttempts` | `5` | Maximum failed attempts for activation recovery |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public class PowerAuthServiceConfiguration {
/**
* Expiration of timestamps for ECIES and MAC token requests for protocol version 3.1 or older.
*/
@Value("${powerauth.service.crypto.requestExpirationExtendedInMilliseconds}")
@Value("${powerauth.service.crypto.requestExpirationInMillisecondsExtended}")
@DurationMin(millis = 0)
private Duration requestExpirationExtended;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ powerauth.service.crypto.signatureMaxFailedAttempts=5
powerauth.service.crypto.signatureValidationLookahead=20
powerauth.service.crypto.offlineSignatureComponentLength=8
powerauth.service.crypto.requestExpirationInMilliseconds=60000
powerauth.service.crypto.requestExpirationExtendedInMilliseconds=7200000
powerauth.service.crypto.requestExpirationInMillisecondsExtended=7200000
powerauth.service.crypto.replayVerificationService=default

# HTTP Proxy Settings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ powerauth.service.crypto.signatureMaxFailedAttempts=5
powerauth.service.crypto.signatureValidationLookahead=20
powerauth.service.crypto.offlineSignatureComponentLength=8
powerauth.service.crypto.requestExpirationInMilliseconds=60000
powerauth.service.crypto.requestExpirationExtendedInMilliseconds=7200000
powerauth.service.crypto.requestExpirationInMillisecondsExtended=7200000
powerauth.service.crypto.replayVerificationService=default

# HTTP Proxy Settings
Expand Down

0 comments on commit 9f08baa

Please sign in to comment.