GithubHelp home page GithubHelp logo

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

Stargazers

 avatar  avatar

Watchers

Frank Denis avatar  avatar James Cloos avatar  avatar

Forkers

libanp

sodium.el's Issues

Some early feedback

Hi,

And thanks for writing this module.

I quickly looked at the code, and there are quite a few things that might be improved:

Also, libhydrogen may be better suited for your use cases.

Cheers,

-Frank.

Problems building: undefined_symbol: sodium_init

I was looking for emacs keepassxc integration and came across this and keepassxc.el, but am having trouble building.

First, I let straight fetch this for me via:

(use-package sodium
  :straight (:host github :repo "dakra/sodium.el"
                   :branch "master"))

which failed with:

Debugger entered--Lisp error: (file-missing "Cannot open load file" "No such file or directory" "libsodium")
  require(libsodium)

So then in a terminal I hopped into the repo directory and:

$ make
emacs -Q -batch -L . -f batch-byte-compile sodium.el
emacs: symbol lookup error: /home/len/.emacs.d/straight/repos/sodium.el/libsodium.so: undefined symbol: sodium_init
Makefile:19: recipe for target 'sodium.elc' failed
make: *** [sodium.elc] Error 127

Other info:

$  lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 18.04.3 LTS
Release:        18.04
Codename:       bionic
$ emacs --version
GNU Emacs 26.3
[...]
$ dpkg -l libsodium-dev
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                                        Version                    Architecture               Description
+++-===========================================-==========================-==========================-============================================================================================
ii  libsodium-dev:amd64                         1.0.16-2                   amd64                      Network communication, cryptography and signaturing library - headers

Any ideas?

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.