Introduction
...
Provisioning is a configuration that all SOAJS micro-services can acquire once you turn on multi-tenant for them.
...
The below configuration is supported by the oAuth micro-service and can be configured & changed at the tenant level under the Manage Pillar.
Configuration Details
...
Field Name | Type | Mandatory | Description |
---|---|---|---|
hashIterations | Number | Hashing Iteration value used by oAuth hasher to encrypt/compare passwords | |
seedLength | Number | Seed Length value used by oAuth hasher to encrypt/compare passwords |
Configuration Sample
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{ "oauth": { "hashIterations": 1024, //used by hasher "seedLength": 32, //used by hasher } } |
...