Stytch · Schema

api_password_v1_ScryptConfig

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
salt string The salt value, which should be in a base64 encoded string form.
n_parameter integer The N value, also known as the iterations count. It must be a power of two greater than 1 and less than 262,145. If your application's N parameter is larger than 262,144, please reach out to [support@
r_parameter integer The r parameter, also known as the block size.
p_parameter integer The p parameter, also known as the parallelism factor.
key_length integer The key length, also known as the hash length.
View JSON Schema on GitHub

JSON Schema

stytch-api-password-v1-scryptconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_password_v1_ScryptConfig",
  "title": "api_password_v1_ScryptConfig",
  "type": "object",
  "properties": {
    "salt": {
      "type": "string",
      "description": "The salt value, which should be in a base64 encoded string form."
    },
    "n_parameter": {
      "type": "integer",
      "format": "int32",
      "description": "The N value, also known as the iterations count. It must be a power of two greater than 1 and less than 262,145.\n      If your application's N parameter is larger than 262,144, please reach out to [[email protected]](mailto:[email protected])"
    },
    "r_parameter": {
      "type": "integer",
      "format": "int32",
      "description": "The r parameter, also known as the block size."
    },
    "p_parameter": {
      "type": "integer",
      "format": "int32",
      "description": "The p parameter, also known as the parallelism factor."
    },
    "key_length": {
      "type": "integer",
      "format": "int32",
      "description": "The key length, also known as the hash length."
    }
  },
  "required": [
    "salt",
    "n_parameter",
    "r_parameter",
    "p_parameter",
    "key_length"
  ]
}