public PronounceablePasswordGenerator(int passwordLength) { _data = new GpwData(); PasswordLength = passwordLength; }
public static void fill(GpwData xx) { int c1, c2, c3; for (c1 = 0; c1 < 13; c1++) { for (c2 = 0; c2 < 26; c2++) { for (c3 = 0; c3 < 26; c3++) { xx.set_Renamed(c1 + 13, c2, c3, tris2[c1][c2][c3]); } // for c3 } // for c2 } // for c1 }