Hello , I'm using MySQL Connector / Net 6.7.4 and am using in my webconfig passwordFormat = " Encrypted " the investment hash as below
<add connectionStringName = " ConnectMySql " enablePasswordRetrieval = "true "
enablePasswordReset = " false" requiresQuestionAndAnswer = " false"
requiresUniqueEmail = " false" passwordFormat = " Encrypted " maxInvalidPasswordAttempts = " 10 "
minRequiredPasswordLength = "6" minRequiredNonalphanumericCharacters = "0"
passwordAttemptWindow = " 10 " applicationName = " Guadix " passwordStrengthRegularExpression = " " autogenerateschema = "true "
name = " MembershipMySql " type = " MySql.Web.Security.MySQLMembershipProvider , MySql.Web , Version = 6.7.4.0 , Culture = neutral , PublicKeyToken = c5687fc88969c44d " / >
However when I use the asp : CreateUserWizard to create a User password is not stored encrypted , but hashed . I wonder if you have any more on setting encryption to work .
Note 've added < machinekey validationKey = " ... " decryptionKey = "..." validation = " SHA1 " decryption = " AES " / > , but still did not work .
Thanks in advance ..
<add connectionStringName = " ConnectMySql " enablePasswordRetrieval = "true "
enablePasswordReset = " false" requiresQuestionAndAnswer = " false"
requiresUniqueEmail = " false" passwordFormat = " Encrypted " maxInvalidPasswordAttempts = " 10 "
minRequiredPasswordLength = "6" minRequiredNonalphanumericCharacters = "0"
passwordAttemptWindow = " 10 " applicationName = " Guadix " passwordStrengthRegularExpression = " " autogenerateschema = "true "
name = " MembershipMySql " type = " MySql.Web.Security.MySQLMembershipProvider , MySql.Web , Version = 6.7.4.0 , Culture = neutral , PublicKeyToken = c5687fc88969c44d " / >
However when I use the asp : CreateUserWizard to create a User password is not stored encrypted , but hashed . I wonder if you have any more on setting encryption to work .
Note 've added < machinekey validationKey = " ... " decryptionKey = "..." validation = " SHA1 " decryption = " AES " / > , but still did not work .
Thanks in advance ..