Skip to content

Commit

Permalink
Syntax highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Oct 11, 2021
1 parent 67f2718 commit 62f0648
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,18 @@ namespace. Each can handle the following input types:

# Usage

user=> (require '[clj-commons.digest :as digest])
nil
; On a string
user=> (digest/md5 "clojure")
"32c0d97f82a20e67c6d184620f6bd322"
; On a file
user=> (use 'clojure.java.io)
nil
user=> (digest/sha-256 (as-file "/tmp/hello.txt"))
"163883d3e0e3b0c028d35b626b98564be8d9d649ed8adb8b929cb8c94c735c59"
``` clojure
user=> (require '[clj-commons.digest :as digest])
nil
; On a string
user=> (digest/md5 "clojure")
"32c0d97f82a20e67c6d184620f6bd322"
; On a file
user=> (use 'clojure.java.io)
nil
user=> (digest/sha-256 (as-file "/tmp/hello.txt"))
"163883d3e0e3b0c028d35b626b98564be8d9d649ed8adb8b929cb8c94c735c59"
```

# Deprecation

Expand Down

0 comments on commit 62f0648

Please sign in to comment.