Subversion Repositories oidplus

Rev

Rev 1050 | Rev 1088 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1050 Rev 1086
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
/*
3
/*
4
 * OIDplus 2.0
4
 * OIDplus 2.0
5
 * Copyright 2019 - 2021 Daniel Marschall, ViaThinkSoft
5
 * Copyright 2019 - 2023 Daniel Marschall, ViaThinkSoft
6
 *
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
9
 * You may obtain a copy of the License at
10
 *
10
 *
Line 17... Line 17...
17
 * limitations under the License.
17
 * limitations under the License.
18
 */
18
 */
19
 
19
 
20
namespace ViaThinkSoft\OIDplus;
20
namespace ViaThinkSoft\OIDplus;
21
 
21
 
-
 
22
// phpcs:disable PSR1.Files.SideEffects
-
 
23
\defined('INSIDE_OIDPLUS') or die;
-
 
24
// phpcs:enable PSR1.Files.SideEffects
-
 
25
 
22
class OIDplusAuthPluginBCrypt extends OIDplusAuthPlugin {
26
class OIDplusAuthPluginBCrypt extends OIDplusAuthPlugin {
23
 
27
 
24
        public function init($html=true) {
28
        public function init($html=true) {
25
                OIDplus::config()->prepareConfigKey('ra_bcrypt_cost', 'How complex should the BCrypt hash of RA passwords be? (Only for plugin A3_bcrypt; values 4-31, default 10)', 10, OIDplusConfig::PROTECTION_EDITABLE, function($value) {
29
                OIDplus::config()->prepareConfigKey('ra_bcrypt_cost', 'How complex should the BCrypt hash of RA passwords be? (Only for plugin A3_bcrypt; values 4-31, default 10)', 10, OIDplusConfig::PROTECTION_EDITABLE, function($value) {
26
                        if (empty($value) || !is_int($value) || ($value<4) || ($value>31)) {
30
                        if (empty($value) || !is_int($value) || ($value<4) || ($value>31)) {