BPMForm Password Authentication

Yeah its “Broke” you have to code around it :frowning:

using Epicor.Security.Cryptography.SHA;
 
if(Hasher.VerifyHash(base.callContextBpmData.Password, this.GetPasswordBySystemUserId(Db, callContextClient.CurrentUserId), "SHA256"))
{
//Valid
}
else
{
//Invalid
}