Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
INSERT INTO tabelle (whatever, passwort, usw) VALUES('feld1', SHA1('geheim'), 'nochwas');
SELECT * FROM tabelle WHERE passwort=SHA1('geheim');
$passwort = $_POST['passwort'];
$salt_str = 'geheimerstring123';
$gesaltetes_passwort = md5($salt_str . $passwort);
Das sind auch keine Verschlüsselungen, sondern hashes. Diese lassen sich nicht wiederherstellen, außer durch etwaige Exploits... also one way.