10 lines
213 B
Common Lisp
10 lines
213 B
Common Lisp
(in-package :cl-user)
|
|
|
|
(defpackage #:cl-password
|
|
(:use :cl :ironclad)
|
|
(:shadow :null)
|
|
(:export #:make-random-salt
|
|
#:unsupported-hash-error
|
|
#:hash-password
|
|
#:check-password))
|