![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@leisurelink/auth-context
Advanced tools
LeisureLink client-side authentication & authorization context for node.
LeisureLink client-side authentication & authorization context for node.
auth-context
is one of many security tools in use by the LeisureLink service ecosystem to ensure that security-principals
(users and systems) are authorized to perform the actions they request.
In order to ensure the LeisureLink systems remain loosely coupled, yet maintain a high-level of security, each operation is performed within the context of an auth-token
; in most cases this means that an auth-token
is conveyed with each request, such as in an HTTP Authorization header. This enables each service to authenticate the caller, as well as trust identity-claims encoded within the auth-token
.
In the present version, we utilize JSON Web Token (JWT) to encode our auth-token
. It is fair to say that our auth-token
is-a JWT.
This module embodies the client-side utilities we've built over the auth-token
that enable us to perform access control and role-based security during the system's operation.
> AUTH_ACCEPT_JWT_ISSUER=LeisureLink-authentic \
AUTH_ACCEPT_JWT_AUDIENCE=vrHub \
AUTH_ACCEPT_JWT_ISSUER_KEY_FILE=authentic-key.pub \
node app.js
These are types defined in this repository.
auth-tokens
for a specified issuer
and audience
.auth-token
, enables interrogation of a principal's claims as well as authoriztion challenges.These are types that types in this repository may use
crProvider (Claim Resolution Provider) - A object (or library) which exposes methods for resolving local and remote claims. A object must minimally expose two methods to be considered a crProvider:
function (csid, callback)
where csid is a Claimset Idfunction (clid, systemId, callback)
where clid is a Claim Id and SystemId is an identifier for a principal.More information about the nature of the requirements placed on the returned functions can be found here.
Both of the Claim Resolutoin Provider functions accept a lang, e.g. en_US, and an instatiated AuthenticClient object.
FAQs
LeisureLink client-side authentication & authorization context for node.
We found that @leisurelink/auth-context demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 18 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.