We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac0f3bb commit 357cbb8Copy full SHA for 357cbb8
src/clojure/buddy/hashers.clj
@@ -49,7 +49,8 @@
49
[:pbkdf2+sha3-256
50
:pbkdf2+sha512
51
:pbkdf2+blake2b-512
52
- :bcrypt+blake2b-512])
+ :bcrypt+blake2b-512
53
+ :bcrypt+sha512])
54
55
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
56
;; Impl Interface
test/buddy/hashers_tests.clj
@@ -127,7 +127,7 @@
127
(is (hashers/check "hello" pwd))
128
(is (not (hashers/check "hello" pwd {:limit limit})))))
129
130
-(deftest setter-called
+(deftest update-policy-generic
131
(let [pwd (hashers/encrypt "hello" {:algorithm :bcrypt+sha512
132
:iterations 10})
133
p (promise)]
0 commit comments