convert AuthUtils to a non-static class and instantiate it as an object, support...
[authserver.git] / authutils.php-class
CommitLineData
d46a42f1
RK
1<?php
2/* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5
6class AuthUtils {
7 // KaiRo.at authentication utilities PHP class
8 // This class contains helper functions for the authentication system.
9 //
ac442755
RK
10 // function __construct()
11 // CONSTRUCTOR
be1082a6 12 //
ac442755
RK
13 // private $pwd_cost
14 // The cost parameter for use with PHP password_hash function.
15 //
16 // private $pwd_nonces
17 // The array of nonces to use for "peppering" passwords. For new hashes, the last one of those will be used.
18 //
19 // function checkPasswordConstraints($new_password, $user_email)
d46a42f1
RK
20 // Check password constraints and return an array of error messages (empty if all constraints are met).
21 //
ac442755 22 // function createSessionKey()
d46a42f1
RK
23 // Return a random session key.
24 //
ac442755 25 // function createVerificationCode()
d46a42f1
RK
26 // Return a random acount/email verification code.
27 //
ac442755 28 // function createTimeCode($session, [$offset], [$validity_minutes])
d46a42f1
RK
29 // Return a time-based code based on the key and ID of the given session.
30 // An offset can be given to create a specific code for verification, otherwise and offset will be generated.
31 // Also, an amount of minutes for the code to stay valid can be handed over, by default 10 minutes will be used.
32 //
ac442755 33 // function verifyTimeCode($timecode_to_verify, $session, [$validity_minutes])
d46a42f1
RK
34 // Verify a given time-based code and return true if it's valid or false if it's not.
35 // See createTimeCode() documentation for the session and validity paramerters.
be1082a6 36 //
ac442755 37 // function pwdHash($new_password)
be1082a6
RK
38 // Return a hash for the given password.
39 //
ac442755 40 // function pwdVerify($password_to_verify, $user)
be1082a6
RK
41 // Return true if the password verifies against the pwdhash field of the user, false if not.
42 //
ac442755 43 // function pwdNeedsRehash($user)
be1082a6
RK
44 // Return true if the pwdhash field of the user uses an outdated standard and needs to be rehashed.
45
ac442755
RK
46 function __construct($settings) {
47 // *** constructor ***
48 if (array_key_exists('pwd_nonces', $settings)) {
49 $this->pwd_nonces = $settings['pwd_nonces'];
50 }
51 if (array_key_exists('pwd_cost', $settings)) {
52 $this->pwd_cost = $settings['pwd_cost'];
53 }
54 }
55
56 private $pwd_cost = 10;
57 private $pwd_nonces = array();
d46a42f1 58
ac442755 59 function checkPasswordConstraints($new_password, $user_email) {
d46a42f1
RK
60 $errors = array();
61 if ($new_password != trim($new_password)) {
62 $errors[] = _('Password must not start or end with a whitespace character like a space.');
63 }
64 if (strlen($new_password) < 8) { $errors[] = sprintf(_('Password too short (min. %s characters).'), 8); }
65 if (strlen($new_password) > 70) { $errors[] = sprintf(_('Password too long (max. %s characters).'), 70); }
66 if ((strtolower($new_password) == strtolower($user_email)) ||
67 in_array(strtolower($new_password), preg_split("/[@\.]+/", strtolower($user_email)))) {
68 $errors[] = _('The passwort can not be equal to your email or any part of it.');
69 }
70 if ((strlen($new_password) < 15) && (preg_match('/^[a-zA-Z]+$/', $new_password))) {
71 $errors[] = sprintf(_('Your password must use characters other than normal letters or contain least %s characters.'), 15);
72 }
73 if (preg_match('/^\d+$/', $new_password)) {
74 $errors[] = sprintf(_('Your password cannot consist only of numbers.'), 15);
75 }
76 if (strlen(count_chars($new_password, 3)) < 5) {
77 $errors[] = sprintf(_('Password does have to contain at least %s different characters.'), 5);
78 }
79 return $errors;
80 }
81
ac442755 82 function createSessionKey() {
d46a42f1
RK
83 return bin2hex(openssl_random_pseudo_bytes(512 / 8)); // Get 512 bits of randomness (128 byte hex string).
84 }
85
ac442755 86 function createVerificationCode() {
d46a42f1
RK
87 return bin2hex(openssl_random_pseudo_bytes(512 / 8)); // Get 512 bits of randomness (128 byte hex string).
88 }
89
ac442755 90 function createTimeCode($session, $offset = null, $validity_minutes = 10) {
d46a42f1
RK
91 // Matches TOTP algorithms, see https://en.wikipedia.org/wiki/Time-based_One-time_Password_Algorithm
92 $valid_seconds = intval($validity_minutes) * 60;
93 if ($valid_seconds < 60) { $valid_seconds = 60; }
94 $code_digits = 8;
95 $time = time();
96 $rest = is_null($offset)?($time % $valid_seconds):intval($offset); // T0, will be sent as part of code to make it valid for the full duration.
97 $counter = floor(($time - $rest) / $valid_seconds);
98 $hmac = mhash(MHASH_SHA1, $counter, $session['id'].$session['sesskey']);
99 $offset = hexdec(substr(bin2hex(substr($hmac, -1)), -1)); // Get the last 4 bits as a number.
100 $totp = hexdec(bin2hex(substr($hmac, $offset, 4))) & 0x7FFFFFFF; // Take 4 bytes at the offset, discard highest bit.
101 $totp_value = sprintf('%0'.$code_digits.'d', substr($totp, -$code_digits));
102 return $rest.'.'.$totp_value;
103 }
104
ac442755 105 function verifyTimeCode($timecode_to_verify, $session, $validity_minutes = 10) {
d46a42f1 106 if (preg_match('/^(\d+)\.\d+$/', $timecode_to_verify, $regs)) {
ac442755 107 return ($timecode_to_verify === $this->createTimeCode($session, $regs[1], $validity_minutes));
d46a42f1
RK
108 }
109 return false;
110 }
be1082a6 111
ac442755
RK
112 function pwdHash($new_password) {
113 $hash_prefix = '';
114 if (count($this->pwd_nonces)) {
115 $new_password .= $this->pwd_nonces[count($this->pwd_nonces) - 1];
116 $hash_prefix = (count($this->pwd_nonces) - 1).'|';
117 }
118 return $hash_prefix.password_hash($new_password, PASSWORD_DEFAULT, array('cost' => $this->pwd_cost));
be1082a6
RK
119 }
120
ac442755
RK
121 function pwdVerify($password_to_verify, $userdata) {
122 if (preg_match('/^(\d+)\|/', $userdata['pwdhash'], $regs)) {
123 $password_to_verify .= $this->pwd_nonces[$regs[1]];
124 }
125 return password_verify($password_to_verify, $userdata['pwdhash']);
be1082a6
RK
126 }
127
ac442755
RK
128 function pwdNeedsRehash($userdata) {
129 $nonceid = -1;
130 $pwdhash = $userdata['pwdhash'];
131 if (preg_match('/^(\d+)\|(.+)$/', $userdata['pwdhash'], $regs)) {
132 $nonceid = $regs[1];
133 $pwdhash = $regs[2];
134 }
135 if ($nonceid == count($this->pwd_nonces) - 1) {
136 return password_needs_rehash($pwdhash, PASSWORD_DEFAULT, array('cost' => $this->pwd_cost));
137 }
138 else {
139 return true;
140 }
be1082a6 141 }
d46a42f1
RK
142}
143?>