Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Digest algorithms (md5, sha1 ...) for Clojure

NotificationsYou must be signed in to change notification settings

clj-commons/digest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Clojars Projectcljdoc badgeCircleCI Status

clj-commons/digest - A message digest library for Clojure. Providingmd5,sha-256, ...

There are several digest functions (such asmd5,sha-256 ...) in thisnamespace. Each can handle the following input types:

  • java.lang.String
  • byte array
  • java.io.File
  • java.io.InputStream
  • Sequence of byte array

Usage

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

Installation

deps.edn

org.clj-commons/digest {:mvn/version"1.4.100"}

lein

[org.clj-commons/digest"1.4.100"]

Dev

Deployment

Runbb deploy to deploy using the clj-commonsreleasescript or create a tag manually in the formatRelease-1.4.<commit-count> andpush it.

License

Copyright© 2017 Miki Tebekamiki.tebeka@gmail.com

Distributed under the Eclipse Public License (same as Clojure).

Snail image intests is public domain by Miki Tebeka


[8]ページ先頭

©2009-2025 Movatter.jp