CRYPTAUR

Cryptor

Gem Version Build Status Code Climate Coverage Status

A safe Ruby encryption library, designed to support features like multiple active encryption keys and key rotation.

Cryptor uses authenticated encryption exclusively, ensuring your data remains untamered with, even when it's in the hands of an attacker.

Cryptor supports two backends:

Cryptor uses the experimental ORDO v0 message format for serializing encrypted messages.

Installation

Add this line to your application's Gemfile:

gem 'cryptor'

And then execute:

$ bundle

Or install it yourself as:

$ gem install cryptor

Usage

To begin with, you must select a backend:

RbNaCl is a Ruby FFI binding to libsodium, a portable state-of-the-art cryptography library.

To use Cryptor with RbNaCl, add the following to your Gemfile:

gem 'rbnacl-libsodium'

And in your Ruby program, require the following:

require 'cryptor'
require 'cryptor/ciphers/xsalsa20poly1305'

Rails (ActiveSupport::MessageEncryptor)

Cryptor can use ActiveSupport 4.0+'s MessageEncryptor class to encrypt messages. This scheme uses AES-256 in CBC mode for encryption and HMAC-SHA1 to provide ciphertext integrity.

This option is only recommended if you have some compliance issues which mandate the use of NIST ciphers or if you have problems installing the rbnacl-libsodium gem or libsodium library for some reason.

To use Cryptor with ActiveSupport::MessageEncryptor, require the following from a Rails 4.0+ app or other app with ActiveSupport 4.0+ bundled:

require 'cryptor'
require 'cryptor/ciphers/message_encryptor'

Authenticated Symmetric Encryption

To encrypt data with Cryptor, you must first make a secret key to encrypt it under. Use the following for RbNaCl:

# Make a RbNaCl secret key
secret_key = Cryptor::SymmetricEncryption.random_key(:xsalsa20poly1305)

or the following for ActiveSupport::MessageEncryptor:

# Make an ActiveSupport secret key
secret_key = Cryptor::SymmetricEncryption.random_key(:message_encryptor)

Inspecting a secret key looks like this:

#<Cryptor::SecretKey:0x81438830 cipher=xsalsa20poly1305 fingerprint=ni:///sha-256;Wy8hx4...>

You can't actually see the secret key itself by calling #inspect or #to_s. This is to prevent accidentally logging the secret key. Instead you can only see the key's fingerprint, which is given as a RFC 6920 hash URI of the secret key's ORDO secret URI.

To obtain the secret URI, use the #to_secret_uri method, which returns a string:

"secret.key:///xsalsa20poly1305;0saB1tfgKWDh_bX0oAquLWgAq-6yjG1u04mP-CtQG-4"

This string can be saved somewhere secret and safe then later loaded and passed into Cryptor::SymmetricEncryption.new:

cryptor = Cryptor::SymmetricEncryption.new("secret.key:///xsalsa20poly1305;0saB...")

After this, you can encrypt with the #encrypt method:

ciphertext = cryptor.encrypt(plaintext)

and decrypt with the #decrypt method:

decrypted = cryptor.decrypt(ciphertext)

Contributing

  • Fork this repository on Github
  • Make your changes and send a pull request
  • If your changes look good, we'll merge 'em

License

Copyright (c) 2014 Tony Arcieri. Distributed under the MIT License. See LICENSE.txt for further details.