So We have an existing database in our application, now we want to add camunda into it. So we created the camunda related tables into it.
But now the challenge is how to create the users, their passwords.
So Camunda provides APIs to create/update users, but we don’t want it in that way.
We just want to create a script that will create a new user in camunda User table, then create a salt for that user, then encrypt the user password using that salt.
In short instead of API Call we want to create the user details by our self. So can someone please assist us like how - camunda creates it’s salt, then save it in db. - then how it encrypt the user password and save it to db.