Example #1
0
 public virtual void ValidateOutput(Generator generator, Word password, char[] chars)
 {
     if (chars.Length == 0)
     {
         password.AppendLog("Error: '{0}' filter removed all chars from list.\r\n", FilterName);
     }
 }
Example #2
0
 public virtual void ValidateOutput(Generator generator, Word password, char[] chars)
 {
     if (chars.Length == 0)
     {
         password.AppendLog("Error: '{0}' filter removed all chars from list.\r\n", FilterName);
     }
 }
Example #3
0
 public virtual void ValidateInput(Generator generator, Word password, char[] chars)
 {
     if (chars.Length == 0)
     {
         password.AppendLog("Error: Chars list supplied to '{0}' filter is empty.\r\n", FilterName);
     }
 }
Example #4
0
 public virtual void ValidateInput(Generator generator, Word password, char[] chars)
 {
     if (chars.Length == 0){
         password.AppendLog("Error: Chars list supplied to '{0}' filter is empty.\r\n", FilterName);
     }
 }