virt2/api/mod/crypt.html

20 lines
1.2 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{include file=$header h1="Шифратор паролей" description='Мастер создания паролей для htaccess' title="Шифратор паролей" keywords='шифратор для .htpasswd, шифровальщик паролей для .htpasswd,'}
<form action='' method='post'>
<input type="text" name="pwd" value="{$smarty.post.pwd}" class="form-control" placeholder="Любой текст" required>
<input type="submit" class="btn btn-default" value="Зашифровать" name="ok">
</form>
{if isset($res)}
<h2>Результат:</h2>
{$res}
{/if}
<br><br>
<p>
Не сложный сервис для хеширования (необратимого шифрования) паролей.
</p>
<p>
md5 - обычно используется для шифрования паролей пользователей на сайтах
</p>
<p>
crypt - используется для шифрования паролей в файле .htpasswd и многих других, например пароли пользователей Linux, без соли дает всегда разный результат
</p>
{include file=$footer}