Refactor to work with quicklisp.
parent
d62bce3299
commit
f6114ca72c
@ -1,9 +1,5 @@
|
|||||||
(defpackage :cl-password-system (:use :asdf :cl))
|
(asdf:defsystem #:cl-password
|
||||||
|
:serial t
|
||||||
(in-package :cl-password-system)
|
:depends-on (#:ironclad)
|
||||||
|
|
||||||
(defsystem :cl-password
|
|
||||||
:version "0.1"
|
|
||||||
:depends-on (ironclad)
|
|
||||||
:components ((:file "packages")
|
:components ((:file "packages")
|
||||||
(:file "cl-password" :depends-on ("packages"))))
|
(:file "cl-password")))
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
(in-package :cl-user)
|
(require 'ironclad)
|
||||||
|
(cl:defpackage :cl-password
|
||||||
(defpackage #:cl-password
|
(:use #:cl #:ironclad)
|
||||||
(:use :cl :ironclad)
|
|
||||||
(:shadow :null)
|
(:shadow :null)
|
||||||
(:export #:make-random-salt
|
(:export :make-random-salt
|
||||||
#:unsupported-hash-error
|
:unsupported-hash-error
|
||||||
#:hash-password
|
:hash-password
|
||||||
#:check-password))
|
:check-password))
|
||||||
|
Loading…
Reference in New Issue