Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
     }
 }