i’m attempting to import users from an existing database which contains hashed passwords and password salts.
[
{
"user": {
"email": "ncooper-permstest@amplience.com",
"name": "Neil Cooper",
"email_verified": false,
"custom_password_hash": {
"algorithm": "md5",
"hash": {
"value": "*****",
"encoding": "base64"
},
"salt": {
"value": "*****",
"encoding": "utf8",
"position": "prefix"
}
}
},
"errors": [
{
"code": "MAX_LENGTH",
"message": "Error in custom_password_hash.salt.value property - String is too long (147 chars), maximum 128",
"path": "custom_password_hash.salt.value"
}
]
}
]
i can’t find anything that sets the maximum salt length. is this configurable? or am i doing something wrong somewhere?