Coder Social home page Coder Social logo

ml-lab / xsalsa20poly1305 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from codahale/xsalsa20poly1305-clj

0.0 3.0 0.0 32 KB

A Clojure implementation of XSalsa20Poly1305 authenticated encryption, compatible with DJB's NaCl.

License: Eclipse Public License 1.0

Clojure 100.00%

xsalsa20poly1305's Introduction

xsalsa20poly1305

A Clojure implementation of XSalsa20Poly1305 authenticated encryption, compatible with DJB's NaCl. Includes a set of functions compatible with RbNaCl's SimpleBox construction, which automatically manages nonces for you.

Usage

(require '[xsalsa20poly1305.core :as xsalsa20poly1305])

(def k (.getBytes "ayellowsubmarineayellowsubmarine"))

(def n (xsalsa20poly1305/generate-nonce))

(def p (.getBytes "this is a test"))

(def c (xsalsa20poly1305/seal k n p))

(prn (xsalsa20poly1305/unseal k n c))

;; or, if you don't want to manage the nonces yourself

(require '[xsalsa20poly1305.simplebox :as simplebox])

(def c2 (simplebox/seal k p))

(prn (simplebox/unreal k c2))

License

Copyright © 2017 Coda Hale

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

xsalsa20poly1305's People

Contributors

codahale avatar

Watchers

Noon van der Silk avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.