Hi,
The 'password' leaf in the user management model specifies the following regex pattern: [a-zA-Z0-9!$%^()[]_-~{}.+]*
The observation is that it does contain the character '/'.
We want to store the sha-512 based hash password which consists of the set [./a-zA-Z0-9]. Since the allowed charset excludes '/', this would fail.
Can you please include '/' in the allowed regex ? Any reason for not including the '/' in the allowed pattern ?
Thanks
Hi,
The 'password' leaf in the user management model specifies the following regex pattern: [a-zA-Z0-9!$%^()[]_-~{}.+]*
The observation is that it does contain the character '/'.
We want to store the sha-512 based hash password which consists of the set [./a-zA-Z0-9]. Since the allowed charset excludes '/', this would fail.
Can you please include '/' in the allowed regex ? Any reason for not including the '/' in the allowed pattern ?
Thanks