GithubHelp home page GithubHelp logo

libanp / sodium.el Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dakra/sodium.el

0.0 0.0 0.0 32 KB

Emacs bindings for libsodium

License: GNU General Public License v3.0

C 86.78% Emacs Lisp 9.79% Makefile 3.43%

sodium.el's Introduction

Emacs bindings for libsodium

This module is in alpha, works only in Linux with Emacs 25+ and only exposes a high level interface to the crypto_box API.

Install

Run make and ensure that sodium.el is somewhere in your load path. Then

(require 'sodium)

If you use Borg, make sure to execute make in you .gitmodules build-step like this

[submodule "sodium"]
	path = lib/sodium
	url = [email protected]:dakra/sodium.el.git
	build-step = make

Usage

You can see sodium-box-demo.el for a simple example: (Run the box-demo with make box-demo)

(require 'sodium)

(let* ((nonce  (sodium-box-make-nonce))
       (bob    (sodium-box-keypair))
       (bob-pk (cdr (assoc 'pk bob)))
       (bob-sk (cdr (assoc 'sk bob)))
       (alice    (sodium-box-keypair))
       (alice-pk (cdr (assoc 'pk alice)))
       (alice-sk (cdr (assoc 'sk alice)))
       (msg "Hello World!")
       encrypted decrypted)
  (message "Encrypting message '%s'" msg)
  (setq encrypted (sodium-box msg nonce bob-pk alice-sk))
  (message "Decrypt message '%s'" encrypted)
  (setq decrypted (sodium-box-open encrypted nonce alice-pk bob-sk))
  (message "Decrypted message '%s'" decrypted))

Thanks

@jedisct1 for libsodium

Emacs module code was taken from/inspired by:

sodium.el's People

Contributors

dakra 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.