Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html - github.com/peter23/genpas.peter23.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c78c6458519eae0bc8414be6c226c652cf074062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Генератор паролей</title>
<script src="jquery.min.js"></script>
<script src="seedrandom.js"></script>
<script src="pwgen.js"></script>
<script src="genpas.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</head><body>
Режим работы:
<div class='divblock'>
<table><tr>
<td><input type='radio' id='fullrand' name='passmode' checked /><label for='fullrand'> Полный рандом<br><font size='2'>очень устойчив, очень сложно запомнить</font></label></div></td>
<td width='14'>&nbsp</td>
<td><input type='radio' id='pwgen' name='passmode' /><label for='pwgen'> Произносимый пароль по алгоритму pwgen<br><font size='2'>весьма устойчив, возможно запомнить</font></label></div></td>
</tr></table>
</div>
Использовать наборы символов:
<div class='divblock'>
<div class='inpblock'><input type='checkbox' id='az' checked /><label for='az'> a-z</label></div>
<div class='inpblock'><input type='checkbox' id='az2' checked /><label for='az2'> A-Z</label></div>
<div class='inpblock'><input type='checkbox' id='n09' checked /><label for='n09'> 0-9</label></div>
<div class='inpblock'><input type='checkbox' id='schr' checked /><label for='schr'> !&quot;#$%&amp;'()*+,-./:;&lt;=&gt;?@[\]^_`{|}~</label></div>
<div class='inpblock'><input type='checkbox' name='skipamb' id='skipamb' /><label for='skipamb'> исключать символы из набора B8G6I1l|0OQDS5Z2</label></div>
</div>
<div class='divblock'>Длина: <input type='text' id='pwlen' size='2' value='12' /> Количество: <input type='text' id='pwnum' size='2' value='12' /></div>
<div class='divblock'><input type='checkbox' id='use_entropy' checked /><label for='use_entropy'> Использовать энтропию для инициализации генератора случайных чисел.<br>
<font size='2'>Вам нужно будет подвигать и пощелкать мышкой и клавиатурой, чтобы получить максимально случайный пароль.</font></label></div>
<div class='divblock'><input id='genbutton' name='genbutton' type='button' value='Генерировать' /></div>
<div id='diventropy'><div id='text'></div><div id='counter'></div></div>
<div id='pass_cmnt'></div>
<div id='pass'></div>
</body></html>