0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 00:10:11 -05:00

🐛 ⬆️ Fix upgrade bunny hash

This commit is contained in:
mathieu.brunot 2019-02-16 20:44:22 +01:00
parent 6692b19d7e
commit 3f8c206104
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0
2 changed files with 1 additions and 2 deletions

View file

@ -10,7 +10,6 @@
[buddy.hashers :as hashers]
[buddy.sign.jwt :as jwt]
[buddy.core.hash :as hash]
[clj-ldap.client :as ldap]
[uxbox.config :as cfg]
[uxbox.util.spec :as us]
[uxbox.db :as db]

View file

@ -27,7 +27,7 @@
(defn digest
[^bytes data]
(-> (hash/blake2b-256 data)
(-> (hash/blake2b-512 data)
(b64/encode true)
(codecs/bytes->str)))