We need to Encrypt column like password or PasswordAnswer. Is there any way to do so without Db encryption or is there any process or method being called on inserting values in these coulmns.
We need to Encrypt column like password or PasswordAnswer. Is there any way to do so without Db encryption or is there any process or method being called on inserting values in these coulmns.
Short answer, no. And honestly, if you would manually encrypt the already hashed column for PasswordAnswer you would have successfully made the password query answer system unusable. As I have posted several times before in the communities. The columns used to authenticate against OneIM are stored as a hash only.
Hello Markus,
We need to have hashed values in a custom column like the values hashed in password or password answer column on data insertion.
Then you need to write you own hash-code before you insert the data and just put the hashed data in the property.
Hello Markus,
As there is no provision of setting more than one security question for end users. We were trying to built that functionality using custom columns. But to implement, custom columns need to be hashed like PasswordAnswer column. Can you tell us which hash code standard is used for hashing this column.
Hello Markus,
As there is no provision of setting more than one security question for end users. We were trying to built that functionality using custom columns. But to implement, custom columns need to be hashed like PasswordAnswer column. Can you tell us which hash code standard is used for hashing this column.
Even if I would tell you it doesn't matter. Choose whatever you are pleased to use. The check against those new answer has to be coded by you as well in that case.