Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
4fc57390
Commit
4fc57390
authored
May 16, 2016
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib: move Base32 implementation to own subdir
parent
7a068d5b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
Base32.php
src/opnsense/contrib/base32/Base32.php
+0
-0
LocalTOTP.php
src/opnsense/mvc/app/library/OPNsense/Auth/LocalTOTP.php
+2
-1
system_usermanager.php
src/www/system_usermanager.php
+3
-2
No files found.
src/opnsense/contrib/Base32.php
→
src/opnsense/contrib/
base32/
Base32.php
View file @
4fc57390
File moved
src/opnsense/mvc/app/library/OPNsense/Auth/LocalTOTP.php
View file @
4fc57390
<?php
<?php
/**
/**
* Copyright (C) 2015 Deciso B.V.
* Copyright (C) 2015 Deciso B.V.
*
*
...
@@ -29,7 +30,7 @@
...
@@ -29,7 +30,7 @@
namespace
OPNsense\Auth
;
namespace
OPNsense\Auth
;
require_once
(
"Base32.php"
)
;
require_once
'base32/Base32.php'
;
/**
/**
* RFC 6238 TOTP: Time-Based One-Time Password Authenticator
* RFC 6238 TOTP: Time-Based One-Time Password Authenticator
...
...
src/www/system_usermanager.php
View file @
4fc57390
...
@@ -28,8 +28,9 @@
...
@@ -28,8 +28,9 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
POSSIBILITY OF SUCH DAMAGE.
*/
*/
require_once
(
"guiconfig.inc"
);
require_once
(
"Base32.php"
);
require_once
'guiconfig.inc'
;
require_once
'base32/Base32.php'
;
function
get_user_privdesc
(
&
$user
)
function
get_user_privdesc
(
&
$user
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment