Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hexang 息壤平台
persona
Commits
a0a424a5
Commit
a0a424a5
authored
13 years ago
by
Shane Tomlinson
Browse files
Options
Downloads
Plain Diff
Merge branch 'feature-certs' of github.com:mozilla/browserid into feature-certs
parents
b1ee54b5
16583925
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
verifier/lib/certassertion.js
+14
-19
14 additions, 19 deletions
verifier/lib/certassertion.js
with
14 additions
and
19 deletions
verifier/lib/certassertion.js
+
14
−
19
View file @
a0a424a5
...
...
@@ -140,28 +140,23 @@ function retrieveHostPublicKey(host, successCB, errorCB) {
function
verify
(
assertion
,
audience
,
successCB
,
errorCB
,
pkRetriever
)
{
// assertion is bundle
var
bundle
=
vep
.
unbundleCertsAndAssertion
(
assertion
);
var
theIssuer
;
jwcert
.
JWCert
.
verifyChain
(
bundle
.
certificates
,
function
(
issuer
,
next
)
{
console
.
log
(
"
ISSUER is
"
+
issuer
);
// for now, only support the browserid.org issuer
if
(
issuer
!=
configuration
.
get
(
'
hostname
'
))
{
// allow other retrievers for now for testing
//
// retrieve the public key for the issuer and
// pass it to the continuation
if
(
pkRetriever
)
pkRetriever
(
issuer
,
next
);
else
next
(
null
);
return
;
theIssuer
=
issuer
;
// allow other retrievers for testing
if
(
pkRetriever
)
pkRetriever
(
issuer
,
next
);
else
retrieveHostPublicKey
(
issuer
,
next
,
function
(
err
)
{
next
(
null
);});
},
function
(
pk
,
principal
)
{
// primary?
if
(
theIssuer
!=
configuration
.
get
(
'
hostname
'
))
{
// then the email better match the issuer
if
(
!
principal
.
email
.
match
(
"
@
"
+
theIssuer
+
"
$
"
))
return
errorCB
();
}
// retrieve the public key for real
retrieveHostPublicKey
(
issuer
,
next
,
function
(
err
)
{
next
(
null
);
});
},
function
(
pk
,
principal
)
{
var
tok
=
new
jwt
.
JWT
();
tok
.
parse
(
bundle
.
assertion
);
...
...
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