New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@consento/crypto

Package Overview
Dependencies
Maintainers
2
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@consento/crypto

Crypto functionality used in Consento

  • 0.5.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
38
increased by3700%
Maintainers
2
Weekly downloads
 
Created
Source

@consento/crypto

@consento/crypto is a set of crypto primitives useful for the communication within the consento workflow.

Goal

There are several crypto implementations out there, some work well on the server others work in the browser, however due to asynchronisity issue in the libraries (some are sync, some async) they don't work on either system. This library simplifies existing API's to a distilled version that will work easily on server and mobile phones.

The implementation offered is as synchronous as possible, offering serialization (toJSON/Classes) for all data types.

Vocabulary

  • Channel - an e2e encrypted setup consisting of one Receiver and one Sender
  • Sender - an object containing the keys that allow to encrypt data
  • Receiver - an object containing the keys that allow to decrypt data created by the Sender
  • Connection - an e2e encrypted setup consisting of the Receiver of one channel and the Sender of another.
  • Annonymous - an object describing an the capability to verify if a message is part of a Channel
  • Blob - a self-contained piece of data, like an image or pdf.
  • Handshake - the process to connect two separate processes/devices resulting in a Connection for each process.

Sending/Receiving encrypted messages

The crypto library contains useful primitives for sending e2e encrypted messages through public channels.

const { createChannel } = require('@consento/crypto')
const { receiver, sender } = createChannel()

const encrypted = sender.encrypt('hello world')
const decrypted = receiver.decrypt(encrypted)

decrypted.body === 'hello world'

You can create a new communication channel with the simple createChannel method.

const channel = createChannel()
const { receiver } = channel // Can decrypt messages; _could_ encrypt messages, but these would not be signed and rejected!
const { sender } = channel // Can only encrypt messages.
const { annonymous } = channel // Object that can verify messages but not de-/encrypt messages.

receiver.receiveKey // To backup/restore the receiver
sender.sendKey // To backup/restore the sender
annonymous.idBase64 === receiver.idBase64 === sender.idBase64 // The lookup id is same here

sender.encryptKey === receiver.encryptKey // Key to encrypt messages

receiver.decryptKey // Allows the receiver to decrypt messages
sender.signKey // Allows the sender to sign messages

receiver.receiveKey // allows decryption of messages
receiver.annonymous.id // public channel id - can be shared with other people - also used to verify if a message was properly sent.
receiver.id // shortcut on the sender for the channel id

All objects create with createChannel are well de-/serializable:

const { createChannel, Receiver, Sender, Annonymous } = require('@consento/crypto')
const { receiver, sender, annonymous } = createChannel()

new Receiver(receiver.toJSON())
new Sender(sender.toJSON())
new Annonymous(annonymous.toJSON())

.annonymous

Both the .sender and the .receiver object have a .annoymous field to retreive an annonymous instance for the sender/receiver.

const { receiver, sender } = createChannel()
receiver.annonymous.idBase64 === sender.annonymous.idBase64
sender.encrypt(body)

Encrypt and sign a given input with the sender key.

  • body - what you like to encrypt, any serializable object is possible
const encrypted = sender.encrypt('secret message')
encrypted.signature // Uint8Array
encrypted.body // Uint8Array
sender.encryptOnly(body)

Only encrypt the body. This is only recommended in an environment where the signature needs to be created at a different time!

  • body - what you like to encrypt, any serializable object is possible
const encrypted = sender.encrypt('secret message')
encrypted // Uint8Array with an encrypted message
sender.sign(data)

Signs a given data. This is only recommended in an environment where the data was encrypted at a different time!

  • data - Uint8Array for which a signature is wanted
const signature = sender.sign(sender.encryptOnly('secret message'))
signature // Uint8Array with the signature of the encrypted message
annonymous.verify(signature, body)

Using the annonymous object we can verify a given data.

  • signature - Uint8Array with the signature for the body
  • body - Uint8Array with of the encrypted data.
const encrypted = sender.encrypt('hello world')
const bool = annonymous.verify(encrypted.signature, encrypted.body)
annonymous.verifyMessage(message)

As a short-cut its also possible to just verify a message

  • message - { signature: Uint8Array, body: Uint8Array }
const bool = annonymous.verifyMessage(message)
receiver.decrypt(encrypted)

Get the content of a once encrypted message.

  • encrypted - { signature: Uint8Array, body: Uint8Array } as created by sender.encrypt or Uint8Array created with sender.encryptOnly
const message = receiver.decrypt(message:)

Creating a handshake

crypto also holds primitives for a decentralized handshake mechanism.

const { initHandshake, acceptHandshake } = require('@consento/crypto')

initHandshake is to be used by the first person - "Alice".

acceptHandshake is to be used by the second person - "Bob".

How the handshake works:

  1. Alice needs to create the initial message:

    const alice = initHandshake()
    const initMessage = alice.firstMessage
    
  2. Alice needs to listen to the channel with the id alice.receiver.id for answers that may come from Bob.

  3. Alice needs to send hand the initial message to Bob using any means. (QR Code, Email,...)

  4. Bob needs to receive the initial message

    const bob = acceptHandshake(firstMessage)
    
  5. Bob needs to listen to the channel with the id bob.receiver.id for the final message from Alice.

  6. Bob needs to send the message, encrypted to the channel with the id: bob.sender.id:

    bob.sender.encrypt(bob.acceptMessage)
    
  7. Alice has to receive the acception message and can generate the channels out of it.

    const decryptedAcceptMessage = alice.receiver.decryptMessage(acceptMessage).body
    const package = confirmHandshake(alice, decryptedAcceptMessage)
    const {
      connection: {
        sender: aliceToBobSender, // channel to send messages to Bob
        receiver: bobToAliceReceiver, // channel to receive messages from Bob
      },
      finalMessage
    } = package
    
  8. Alice has to send the final message to bob:

    aliceToBobSender.encrypt(finalMessage)
    
  9. Bob can now finalize the handshake

    const { sender: bobToAliceSender, receiver: aliceToBobReceiver } = bob.finalize(finalMessage)
    

Now Alice and Bob have each two channels: one to send data to, one to receive data from.

bobToAliceReceiver.decrypt(aliceToBobSender.encrypt('Hello Bob!')).body // Hello Bob!
aliceToBobReceiver.decrypt(bobToAliceSender.encrypt('Hello Alice!')).body // Hello Alice!

Blob Support

The crypto api also provides primitives for working with encrypted blobs:

const { encryptBlob, decryptBlob, isEncryptedBlob } = setup(sodium)

const {
  blob, // Information about a blob: to pass around
  encrypted // Encrypted data to be stored
} = encryptBlob('Hello Secret!')
blob.path // Path at which to store the encrypted data
blob.secretKey // Secretkey to decrypt this data
blob.size // Number of bytes of the encrypted blob (only available after encryption)

isEncryptedBlob(blob) // To verify if a set of data is a blob

const decrypted = decryptBlob(blob.secretKey, encrypted)

Blob information is serializable with toJSON and deserializable using toEncryptedBlob.

const { encryptBlob, decryptBlob, toEncryptedBlob } = setup(sodium)

const { blob } = encryptBlob('Hello Secret!')
const blobJSON = blob.toJSON()
const sameBlob = toEncryptedBlob(blobJSON)

It is possible to restore a blob from it's secretKey but that requires async computation:

const { encryptBlob, decryptBlob, toEncryptedBlob } = setup(sodium)

const { blob } = encryptBlob('Hello Secret!')
const sameBlob = toEncryptedBlob(blob.secretKey)

License

MIT

FAQs

Package last updated on 30 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc