https://github.com/keybase/clj-keybase-proofs
Helper Clojure library for integrating Keybase proofs
https://github.com/keybase/clj-keybase-proofs
Last synced: 2 months ago
JSON representation
Helper Clojure library for integrating Keybase proofs
- Host: GitHub
- URL: https://github.com/keybase/clj-keybase-proofs
- Owner: keybase
- License: bsd-3-clause
- Created: 2018-10-29T17:57:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-24T17:27:52.000Z (about 6 years ago)
- Last Synced: 2025-01-02T01:25:51.951Z (4 months ago)
- Language: Clojure
- Size: 13.7 KB
- Stars: 2
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clj-keybase-proofs
`clj-keybase-proofs` is a library intended to help you integrate
[Keybase](https://keybase.io) proofs with your service. Full documentation is
available at the [Proof Integration
Guide](https://keybase.io/docs/proof_integration_guide). You may also be interested
in the [Django library and example application](https://github.com/keybase/django-keybase-proofs).If you like, you can look at the example Clojure application
[Colorbase](https://github.com/keybase/colorbase) to see how this library can
be used in a real website using Ring, Compojure, HugSQL, and Hiccup.## Quickstart
Add to your `build.boot` or `project.clj`:```
clj-keybase-proofs "0.1.0-SNAPSHOT"
```And require into your namespace:
```
(require '[io.keybase.proofs :as keybase-proofs])
```