changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/cry/jwt.lisp

changeset 698: 96958d3eb5b0
parent: 6359b351657a
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; jwt.lisp --- JSON Web Tokens
2 
3 ;;
4 
5 ;;; Commentary:
6 
7 ;; ref: https://en.wikipedia.org/wiki/JSON_Web_Token
8 
9 ;; rfc:7519
10 
11 ;; TODO 2024-06-30: ref: https://datatracker.ietf.org/doc/html/rfc7517
12 
13 ;;; Code:
14 (in-package :cry/jwt)
15