Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
d2ab4711
Commit
d2ab4711
authored
8 years ago
by
Jaime Pérez
Browse files
Options
Downloads
Patches
Plain Diff
Remove private, old der2pem() and pem2der() methods in X509userCert.
parent
8d5460d4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/authX509/lib/Auth/Source/X509userCert.php
+1
-32
1 addition, 32 deletions
modules/authX509/lib/Auth/Source/X509userCert.php
with
1 addition
and
32 deletions
modules/authX509/lib/Auth/Source/X509userCert.php
+
1
−
32
View file @
d2ab4711
...
...
@@ -62,37 +62,6 @@ class sspmod_authX509_Auth_Source_X509userCert extends SimpleSAML_Auth_Source
}
/**
* Convert certificate from PEM to DER
*
* @param array $pem_data PEM-encoded certificate
*/
private
function
pem2der
(
$pem_data
)
{
$begin
=
"CERTIFICATE-----"
;
$end
=
"-----END"
;
$pem_data
=
substr
(
$pem_data
,
strpos
(
$pem_data
,
$begin
)
+
strlen
(
$begin
));
$pem_data
=
substr
(
$pem_data
,
0
,
strpos
(
$pem_data
,
$end
));
$der
=
base64_decode
(
$pem_data
);
return
$der
;
}
/**
* Convert certificate from DER to PEM
*
* @param array $der_data DER-encoded certificate
*/
private
function
der2pem
(
$der_data
)
{
$pem
=
chunk_split
(
base64_encode
(
$der_data
),
64
,
"
\n
"
);
$pem
=
"-----BEGIN CERTIFICATE-----
\n
"
.
$pem
.
"-----END CERTIFICATE-----
\n
"
;
return
$pem
;
}
/**
* Finish a failed authentication.
*
...
...
@@ -202,7 +171,7 @@ class sspmod_authX509_Auth_Source_X509userCert extends SimpleSAML_Auth_Source
$ldap_certs
=
$merged_ldapcerts
;
foreach
(
$ldap_certs
as
$ldap_cert
)
{
$pem
=
$this
->
der2pem
(
$ldap_cert
);
$pem
=
\SimpleSAML\Utils\Crypto
::
der2pem
(
$ldap_cert
);
$ldap_cert_data
=
openssl_x509_parse
(
$pem
);
if
(
$ldap_cert_data
==
false
)
{
SimpleSAML\Logger
::
error
(
'authX509: cert in '
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment