Skip to content
#

Authentication

authentication logo

Authentication is the process of determining whether someone or something is, in fact, who or what it says it is. Authentication technology provides access control for systems by checking to see if a user's credentials match the credentials in a database of authorized users or in a data authentication server.

Here are 9,848 public repositories matching this topic...

next-auth
roberte777
roberte777 commented Jul 13, 2022

Question 💬

In the type definition for JWTEncodeParams, maxAge is defined as optional.
image

export interface JWTEncodeParams {
    /** The JWT payload. */
    token?: JWT;
    /** The secret used to encode the NextAuth.js issued JWT. */
    secret: string | Buffer;
    /**
TypeScript good first issue
nhost
mccutchen
mccutchen commented May 1, 2019

Is your feature request related to a problem? Please describe.

The public key-based request signing functionality added to sso_proxy in buzzfeed/sso#106 is undocumented. In particular, it's not immediately obvious how to a) generate an appropriate keypair or b) validate a signed request in an upstream service.

Describe the solution you'd like

New documenta

good first issue docs
Wikipedia
Wikipedia