Make web token more secure

This commit is contained in:
Anthony Fairchild 2025-06-21 11:55:18 -04:00
parent 3f0e373708
commit f406e9271c

View file

@ -196,7 +196,8 @@ if one is present and login fails."
(defun make-token ()
"Create a unique token used to associate a browser with a user"
(get-universal-time))
(crypto:byte-array-to-hex-string
(crypto:random-data 16)))
;;;;;;;;;;;;;;;;;;;;;;;
;; create-base-table ;;