1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/std/jwt
2020-10-20 13:59:10 +02:00
..
_algorithm.ts feat(std/jwt): add a JSON Web Token library (#7991) 2020-10-20 14:08:34 +11:00
_algorithm_test.ts feat(std/jwt): add a JSON Web Token library (#7991) 2020-10-20 14:08:34 +11:00
_signature.ts feat(std/jwt): add a JSON Web Token library (#7991) 2020-10-20 14:08:34 +11:00
_signature_test.ts feat(std/jwt): add a JSON Web Token library (#7991) 2020-10-20 14:08:34 +11:00
mod.ts feat(std/jwt): add a JSON Web Token library (#7991) 2020-10-20 14:08:34 +11:00
README.md docs(std/jwt): Fix examples (#8044) 2020-10-20 13:59:10 +02:00
test.ts feat(std/jwt): add a JSON Web Token library (#7991) 2020-10-20 14:08:34 +11:00

jwt

Create and verify JSON Web Tokens.

JSON Web Token

create

Takes a payload, key and header and returns the url-safe encoded token.

import { create } from "https://deno.land/std@$STD_VERSION/jwt/mod.ts";

const payload = { foo: "bar" };
const key = "secret";

const token = await create(payload, key); // eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJmb28iOiJiYXIifQ.WePl7achkd0oGNB8XRF_LJwxlyiPZqpdNgdKpDboAjSTsWq-aOGNynTp8TOv8KjonFym8vwFwppXOLoLXbkIaQ

Specific algorithm

const token = await create(payload, key, { header: { alg: "HS256" } });

verify

Takes a token, key and an optional options object and returns the payload of the token if the token is valid. Otherwise it throws an Error.

import { verify } from "https://deno.land/std@$STD_VERSION/jwt/mod.ts";

const token =
  "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJmb28iOiJiYXIifQ.WePl7achkd0oGNB8XRF_LJwxlyiPZqpdNgdKpDboAjSTsWq-aOGNynTp8TOv8KjonFym8vwFwppXOLoLXbkIaQ";
const key = "secret";

const payload = await verify(token, key); // { foo: "bar" }

Specific algorithm

const payload = await verify(token, key, { algorithm: "HS256" });

decode

Takes a token to return an object with the header, payload and signature properties if the token is valid. Otherwise it throws an Error.

import { decode } from "https://deno.land/std@$STD_VERSION/jwt/mod.ts";

const token =
  "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJmb28iOiJiYXIifQ.WePl7achkd0oGNB8XRF_LJwxlyiPZqpdNgdKpDboAjSTsWq-aOGNynTp8TOv8KjonFym8vwFwppXOLoLXbkIaQ";

const { payload, signature, header } = await decode(token); // { header: { alg: "HS512", typ: "JWT" }, payload: { foo: "bar" }, signature: "59e3e5eda72191dd2818d07c5d117f2c9c3197288f66aa5d36074aa436e8023493b16abe68e18dca74e9f133aff0a8e89c5ca6f2fc05c29a5738ba0b5db90869" }

Expiration

The optional exp claim in the payload (number of seconds since January 1, 1970, 00:00:00 UTC) that identifies the expiration time on or after which the JWT must not be accepted for processing. This module checks if the current date/time is before the expiration date/time listed in the exp claim.

const oneHour = 60 * 60;
const token = await create({ exp: Date.now() + oneHour }, "secret");

Algorithms

The following signature and MAC algorithms have been implemented:

Serialization

This application uses the JWS Compact Serialization only.

Specifications