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
1ce3d94c
Commit
1ce3d94c
authored
Oct 29, 2016
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inc: apply random style fixes
(cherry picked from commit
d01b7296
)
parent
739ce7e9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
22 deletions
+26
-22
certs.inc
src/etc/inc/certs.inc
+25
-18
config.lib.inc
src/etc/inc/config.lib.inc
+1
-2
filter_log.inc
src/etc/inc/filter_log.inc
+0
-2
No files found.
src/etc/inc/certs.inc
View file @
1ce3d94c
...
...
@@ -42,7 +42,8 @@ $openssl_crl_status = array(
OCSP_REVOKED_STATUS_CERTIFICATEHOLD
=>
"Certificate Hold"
);
function
&
lookup_ca
(
$refid
)
{
function
&
lookup_ca
(
$refid
)
{
global
$config
;
$false
=
false
;
...
...
@@ -53,10 +54,12 @@ function & lookup_ca($refid) {
}
}
}
return
$false
;
}
function
&
lookup_ca_by_subject
(
$subject
)
{
function
&
lookup_ca_by_subject
(
$subject
)
{
global
$config
;
$false
=
false
;
...
...
@@ -68,10 +71,12 @@ function & lookup_ca_by_subject($subject) {
}
}
}
return
$false
;
}
function
&
lookup_cert
(
$refid
)
{
function
&
lookup_cert
(
$refid
)
{
global
$config
;
$false
=
false
;
...
...
@@ -86,20 +91,24 @@ function & lookup_cert($refid) {
return
$false
;
}
function
&
lookup_crl
(
$refid
)
{
global
$config
;
$false
=
false
;
if
(
is_array
(
$config
[
'crl'
]))
{
foreach
(
$config
[
'crl'
]
as
&
$crl
)
{
if
(
$crl
[
'refid'
]
==
$refid
)
{
return
$crl
;
}
}
}
return
$false
;
function
&
lookup_crl
(
$refid
)
{
global
$config
;
$false
=
false
;
if
(
is_array
(
$config
[
'crl'
]))
{
foreach
(
$config
[
'crl'
]
as
&
$crl
)
{
if
(
$crl
[
'refid'
]
==
$refid
)
{
return
$crl
;
}
}
}
return
$false
;
}
function
ca_chain_array
(
&
$cert
)
{
function
ca_chain_array
(
&
$cert
)
{
if
(
$cert
[
'caref'
])
{
$chain
=
array
();
$crt
=
lookup_ca
(
$cert
[
'caref'
]);
...
...
@@ -277,8 +286,6 @@ function cert_create(&$cert, $caref, $keylen, $lifetime, $dn, $digest_alg = 'sha
return
true
;
}
function
csr_get_subject
(
$str_crt
,
$decode
=
true
)
{
if
(
$decode
)
{
...
...
@@ -378,7 +385,7 @@ function cert_get_issuer($str_crt, $decode = true)
}
return
$issuer
;
}
}
/* this function works on x509 (crt), rsa key (prv), and req(csr) */
function
cert_get_modulus
(
$str_crt
,
$decode
=
true
,
$type
=
'crt'
)
...
...
src/etc/inc/config.lib.inc
View file @
1ce3d94c
...
...
@@ -76,7 +76,7 @@ function alias_make_table($config)
}
}
}
}
}
/**
* parse config into array and return
...
...
@@ -300,7 +300,6 @@ function set_device_perms() {
}
}
function
make_config_revision_entry
(
$desc
=
''
)
{
global
$config
;
...
...
src/etc/inc/filter_log.inc
View file @
1ce3d94c
...
...
@@ -336,5 +336,3 @@ function handle_ajax($nentries, $tail = 50)
exit
;
}
}
?>
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