A Clojure library designed to perform weak encryption, based on 128-bit AES.
Leiningen dependency information:
[org.clojars.tnoda/simple-crypto "0.1.0"]
Example:
user=> (require '[org.clojars.tnoda.simple-crypto :as c])
nil
;;; The encrypt function expects a String value as its input
;;; and returns a byte array.
user=> (def password "abcdefghijklmnop")
#'user/password
user=> (c/encrypt "Hello, World" password)
#<byte[] [B@774b9b80>
;;; Encryption and decryption.
user=> (-> "Hello, World" (c/encrypt password) (c/decrypt password))
"Hello, World"
Copyright (c) 2012 Takahiro Noda
Distributed under the Eclipse Public License, the same as Clojure.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close