Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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 NameTypeMandatoryDescription

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
languagejs
titleoAuth Tenant Configuration Sample
linenumberstrue
{
   "oauth": {
      "hashIterations": 1024, //used by hasher
      "seedLength": 32, //used by hasher      
   }
}

...