mirror of
https://github.com/penpot/penpot.git
synced 2025-06-27 16:17:00 +02:00
🐛 ⬆️ Fix upgrade bunny hash
This commit is contained in:
parent
6692b19d7e
commit
3f8c206104
2 changed files with 1 additions and 2 deletions
|
@ -10,7 +10,6 @@
|
||||||
[buddy.hashers :as hashers]
|
[buddy.hashers :as hashers]
|
||||||
[buddy.sign.jwt :as jwt]
|
[buddy.sign.jwt :as jwt]
|
||||||
[buddy.core.hash :as hash]
|
[buddy.core.hash :as hash]
|
||||||
[clj-ldap.client :as ldap]
|
|
||||||
[uxbox.config :as cfg]
|
[uxbox.config :as cfg]
|
||||||
[uxbox.util.spec :as us]
|
[uxbox.util.spec :as us]
|
||||||
[uxbox.db :as db]
|
[uxbox.db :as db]
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
(defn digest
|
(defn digest
|
||||||
[^bytes data]
|
[^bytes data]
|
||||||
(-> (hash/blake2b-256 data)
|
(-> (hash/blake2b-512 data)
|
||||||
(b64/encode true)
|
(b64/encode true)
|
||||||
(codecs/bytes->str)))
|
(codecs/bytes->str)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue