Compare commits

...

2 commits

Author SHA1 Message Date
David Botton
0bbb123f0b
Merge pull request #435 from anthonyf/main
Make web auth token more secure
2025-06-21 23:54:43 -04:00
Anthony Fairchild
f406e9271c Make web token more secure 2025-06-21 11:55:18 -04:00

View file

@ -196,7 +196,8 @@ if one is present and login fails."
(defun make-token () (defun make-token ()
"Create a unique token used to associate a browser with a user" "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 ;; ;; create-base-table ;;