mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-21 22:53:41 +01:00
7 lines
118 B
PHP
7 lines
118 B
PHP
|
<?php
|
||
|
|
||
|
$klartextPasswort = 'geheim';
|
||
|
|
||
|
$hash = crypt($klartextPasswort, base64_encode($klartextPasswort));
|
||
|
|
||
|
echo $hash;
|