5effc2bd7685822df276c1372dab480cff321941
bernd Alles in das email-modul ve...

bernd authored 16 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
bernd Alles in das email-modul ve...

bernd authored 16 years ago

16) 
bernd Passwort wurde nicht überno...

bernd authored 14 years ago

17) function encrypt_mail_password($newpass)
bernd Alles in das email-modul ve...

bernd authored 16 years ago

18) {
bernd Passwort wurde nicht überno...

bernd authored 14 years ago

19)   DEBUG("unencrypted PW: »".$newpass."«");
bernd Alles in das email-modul ve...

bernd authored 16 years ago

20)   require_once('inc/base.php');
bernd SHA-512 auch für E-mail

bernd authored 14 years ago

21)   if (defined("CRYPT_SHA512") && CRYPT_SHA512 == 1)
22)   {
23)     $rounds = rand(1000, 5000);
24)     $salt = "rounds=".$rounds."$".random_string(8);
bernd Passwort wurde nicht überno...

bernd authored 14 years ago

25)     DEBUG("crypt(\"{$newpass}\", \"\$6\${$salt}\$\");");
bernd SHA-512 auch für E-mail

bernd authored 14 years ago

26)     $newpass = crypt($newpass, "\$6\${$salt}\$");
27)   }
28)   else
29)   {
30)     $salt = random_string(8);
bernd Passwort wurde nicht überno...

bernd authored 14 years ago

31)     DEBUG("crypt(\"{$newpass}\", \"\$1\${$salt}\$\");");
bernd SHA-512 auch für E-mail

bernd authored 14 years ago

32)     $newpass = crypt($newpass, "\$1\${$salt}\$");
33)   }
34)   DEBUG("encrypted PW: ".$newpass);
35)   return chop($newpass);