Logo

github Download
WASM features

Features of WasmThemis #

After you have installed WasmThemis, it is ready to use in your application!

Using Themis #

In order to use WasmThemis, you need to import it like this:

const themis = require('wasm-themis')

themis.initialized.then(function() {
    // You may use Themis once this promise is resolved.
})

Important: WebAssembly code is loaded and compiled asynchronously so you have to wait for the themis.initialized promise to complete before using any Themis functions. If Themis is called too early, you will see an error message like this:

Assertion failed: you need to wait for the runtime to be ready
(e.g. wait for main() to be called)

Key generation #

Asymmetric keypairs #

Themis supports both Elliptic Curve and RSA algorithms for asymmetric cryptography. Algorithm type is chosen according to the generated key type. Asymmetric keys are used by Secure Message and Secure Session objects.

Warning: When using public keys of other peers, make sure they come from trusted sources to prevent Man-in-the-Middle attacks.

When handling private keys of your users, make sure the keys are sufficiently protected. You can find key management guidelines here.

Important WasmThemis doesn’t generate RSA asymmetric keys, but supports existing RSA keys. We suggest using ECC keys.

To generate Elliptic Curve asymmetric keypairs, use:

const themis = require('wasm-themis')

let keypair = new themis.KeyPair()

// Keys are Uint8Arrays
let privateKey = keypair.privateKey
let publicKey = keypair.publicKey

Symmetric keys #

Themis uses highly efficient and secure AES algorithm for symmetric cryptography. A symmetric key is necessary for Secure Cell objects.

Warning: When handling symmetric keys of your users, make sure the keys are sufficiently protected. You can find key management guidelines here.

To generate symmetric keys, use:

const themis = require('wasm-themis')

// Keys are Uint8Arrays
let masterKey = new themis.SymmetricKey()

Secure Cell #

Secure Сell is a high-level cryptographic container aimed at protecting arbitrary data stored in various types of storage (e.g., databases, filesystem files, document archives, cloud storage, etc.) It provides both strong symmetric encryption and data authentication mechanism.

The general approach is that given:

  • input: some source data to protect
  • secret: symmetric key or a password
  • context: and an optional “context information”

Secure Cell will produce:

  • cell: the encrypted data
  • authentication token: some authentication data

The purpose of the optional context information (e.g., a database row number or file name) is to establish a secure association between this context and the protected data. In short, even when the secret is known, if the context is incorrect then decryption will fail.

The purpose of the authentication data is to validate that given a correct key or passphrase (and context), the decrypted data is indeed the same as the original source data, and the encrypted data has not been modified.

The authentication data must be stored somewhere. The most convenient way is to simply append it to the encrypted data, but this is not always possible due to the storage architecture of your application. Secure Cell offers variants that address this issue in different ways.

By default, Secure Cell uses AES-256 for encryption. Authentication data takes additional 44 bytes when symmetric keys are used and 70 bytes in case the data is secured with a passphrase.

Secure Cell supports 2 kinds of secrets:

  • Symmetric keys are convenient to store and efficient to use for machines. However, they are relatively long and hard for humans to remember.

  • Passphrases, in contrast, can be shorter and easier to remember.

    However, passphrases are typically much less random than keys. Secure Cell uses a key derivation function (KDF) to compensate for that and achieves security comparable to keys with shorter passphrases. This comes at a significant performance cost though.

Secure Cell supports 3 operation modes:

  • Seal mode is the most secure and easy to use. Your best choice most of the time. This is also the only mode that supports passphrases at the moment.

  • Token Protect mode is just as secure, but a bit harder to use. This is your choice if you need to keep authentication data separate.

  • Context Imprint mode is a length-preserving version of Secure Cell with no additional data stored. Should be used carefully.

Read more about Secure Cell cryptosystem design to understand better the underlying considerations, limitations, and features of each mode.

Seal mode #

Seal mode is the most secure and easy to use mode of Secure Cell. This should be your default choice unless you need specific features of the other modes.

Initialise a Secure Cell with a secret of your choice to start using it. Seal mode supports symmetric keys and passphrases.

Each secret type has its pros and cons. Read about Key derivation functions to learn more.
const themis = require('wasm-themis')

let symmetricKey = new themis.SymmetricKey()
let cell = themis.SecureCellSeal.withKey(symmetricKey)

// OR

let cell = themis.SecureCellSeal.withPassphrase('a password')

Now you can encrypt your data using the encrypt method:

let plaintext = Uint8Array(...)
let context = Uint8Array(...)

let encrypted = cell.encrypt(plaintext, context)

The associated context argument is optional and can be omitted.

Seal mode produces encrypted cells that are slightly bigger than the input:

assert(encrypted.length > plaintext.length)

You can decrypt the data back using the decrypt method:

try {
    let decrypted = cell.decrypt(encrypted, context)
    // process decrypted data
}
catch (error) {
    // handle decryption failure
}

Make sure to initialise the Secure Cell with the same secret and provide the same associated context as used for encryption. Secure Cell will throw an exception if those are incorrect or if the encrypted data was corrupted.

Token Protect mode #

Token Protect mode should be used if you cannot allow the length of the encrypted data to grow but have additional storage available elsewhere for the authentication token. Other than that, Token Protect mode has the same security properties as the Seal mode.

Initialise a Secure Cell with a secret of your choice to start using it. Token Protect mode supports only symmetric keys.

const themis = require('wasm-themis')

let symmetricKey = new themis.SymmetricKey()

let cell = themis.SecureCellTokenProtect.withKey(symmetricKey)

Now you can encrypt the data using the encrypt method:

let plaintext = Uint8Array(...)
let context = Uint8Array(...)

let result = cell.encrypt(plaintext, context)
let encrypted = result.data
let token = result.token

The associated context argument is optional and can be omitted.

Token Protect mode produces encrypted text and authentication token separately. Encrypted data has the same size as the input:

assert(encrypted.length == plaintext.length)

You need to save both the encrypted data and the token, they are necessary for decryption. Use the decrypt method for that:

try {
    let decrypted = cell.decrypt(encrypted, token, context)
    // process decrypted data
}
catch (error) {
    // handle decryption failure
}

Make sure to initialise the Secure Cell with the same secret and provide the same associated context as used for encryption. Secure Cell will throw an exception if those are incorrect or if the data or the authentication token was corrupted.

Context Imprint mode #

Context Imprint mode should be used if you absolutely cannot allow the length of the encrypted data to grow. This mode is a bit harder to use than the Seal and Token Protect modes. Context Imprint mode also provides slightly weaker integrity guarantees.

Initialise a Secure Cell with a secret of your choice to start using it. Context Imprint mode supports only symmetric keys.

const themis = require('wasm-themis')

let symmetricKey = new themis.SymmetricKey()

let cell = themis.SecureCellContextImprint.withKey(symmetricKey)

Now you can encrypt the data using the encrypt method:

let plaintext = Uint8Array(...)
let context = Uint8Array(...)

let encrypted = cell.encrypt(plaintext, context)
Note: Context Imprint mode requires associated context for encryption and decryption. For the highest level of security, use a different context for each data piece.

Context Imprint mode produces encrypted text of the same size as the input:

assert(encrypted.length == plaintext.length)

You can decrypt the data back using the decrypt method:

let decrypted = cell.decrypt(encrypted, context)
if (!correct(decrypted)) {
    // handle decryption failure
}
Warning: In Context Imprint mode, Secure Cell cannot validate correctness of the decrypted data. If an incorrect secret or context is used, or if the data has been corrupted, Secure Cell will return garbage output without throwing an exception.

Make sure to initialise the Secure Cell with the same secret and provide the same associated context as used for encryption. You should also do some sanity checks after decryption.


Secure Message #

Secure Message is a lightweight container that can help deliver some message or data to your peer in a secure manner. It provides a sequence-independent, stateless, contextless messaging system. This may be preferred in cases that don’t require frequent sequential message exchange and/or in low-bandwidth contexts.

Secure Message is secure enough to exchange messages from time to time, but if you’d like to have perfect forward secrecy and higher security guarantees, consider using Secure Session instead.

Secure Message offers two modes of operation:

  • In Sign–Verify mode, the message is signed by the sender using their private key, then it is verified by the recipient using the sender’s public key.

    The message is packed in a suitable container and signed with an appropriate algorithm, based on the provided keypair type. Note that the message is not encrypted in this mode.

  • In Encrypt–Decrypt mode, the message will be additionally encrypted with an intermediate symmetric key using Secure Cell in Seal mode.

    The intermediate key is generated in such way that only the recipient can recover it. The sender needs to provide their own private key and the public key of the intended recipient. Correspondingly, to get access to the message content, the recipient will need to use their private key along with the public key of the expected sender.

Read more about Secure Message cryptosystem design to understand better the underlying considerations, limitations, and features of each mode.

Signature mode #

Signature mode only adds cryptographic signatures over the messages, enough for anyone to authenticate them and prevent tampering but without additional confidentiality guarantees.

To begin, the sender needs to generate an asymmetric keypair. The private key stays with the sender and the public key should be published. Any recipient with the public key will be able to verify messages signed by the sender which owns the corresponding private key.

The sender initialises Secure Message using their private key:

const themis = require('wasm-themis')

let keyPair = new themis.KeyPair()

let secureMessage = new themis.SecureMessageSign(keyPair.privateKey)

Messages can be signed using the sign method:

let message = Uint8Array(...)

let signedMessage = secureMessage.sign(message)

To verify messages, the recipient first has to obtain the sender’s public key. The public key is used to initialise Secure Message for verification:

let peerPublicKey = Uint8Array(...)

let secureMessage = new themis.SecureMessageVerify(peerPublicKey)

Now the receipent may verify messages signed by the sender using the verify method:

try {
    let verifiedMessage = secureMessage.verify(signedMessage)
    // process verified data
}
catch (error) {
    // handle verification failure
}

Secure Message will throw an exception if the message has been modified since the sender signed it, or if the message has been signed by someone else, not the expected sender.

Encryption mode #

Encryption mode not only certifies the integrity and authenticity of the message, it also guarantees its confidentialty. That is, only the intended recipient is able to read the encrypted message, as well as to verify that it has been signed by the expected sender and arrived intact.

For this mode, both the sender and the recipient—let’s call them Alice and Bob—each need to generate an asymmetric keypair of their own, and then send their public keys to the other party.

Note: Be sure to authenticate the public keys you receive to prevent Man-in-the-Middle attacks. You can find key management guidelines here.

Alice initialises Secure Message with her private key and Bob’s public key:

const themis = require('wasm-themis')

let aliceKeyPair = new themis.KeyPair()
let bobPublicKey = Uint8Array(...) // received securely

let aliceSecureMessage = new themis.SecureMessage(aliceKeyPair.privateKey,
                                                  bobPublicKey)

Now Alice can encrypt messages for Bob using the encrypt method:

let message = Uint8Array(...)

let encryptedMessage = aliceSecureMessage.encrypt(message)

Bob initialises Secure Message with his private key and Alice’s public key:

let bobKeyPair = new themis.KeyPair()
let alicePublicKey = Uint8Array(...) // received securely

let bobSecureMessage = new themis.SecureMessage(bobKeyPair.privateKey,
                                                alicePublicKey)

With this, Bob is able to decrypt messages received from Alice using the decrypt method:

try {
    let decryptedMessage = bobSecureMessage.decrypt(encryptedMessage)
    // process decryped data
}
catch (error) {
    // handle decryption failure
}

Bob’s Secure Message will throw an exception if the message has been modified since Alice encrypted it; or if the message was encrypted by Carol, not by Alice; or if the message was actually encrypted by Alice but for Carol instead, not for Bob.


Secure Session #

Secure Session is a lightweight protocol for securing any kind of network communication, on both private and public networks, including the Internet. It operates on the 5th layer of the network OSI model (the session layer).

Secure Session provides a stateful, sequence-dependent messaging system. This approach is suitable for protecting long-lived peer-to-peer message exchanges where the secure data exchange is tied to a specific session context.

Communication over Secure Session consists of two stages:

  • Session negotiation (key agreement), during which the peers exchange their cryptographic material and authenticate each other. After a successful mutual authentication, each peer derives a session-shared secret and other auxiliary data (session ID, sequence numbers, etc.)

  • Actual data exchange, when the peers securely exchange data provided by higher-layer application protocols.

Read more about Secure Session cryptosystem design to understand better the underlying considerations, get an overview of the protocol and its features, etc.

Setting up Secure Session #

Secure Session has two parties called “client” and “server” for the sake of simplicity, but they could be more precisely called “initiator” and “acceptor” – the only difference between the two is in who starts the communication. After the session is established, either party can send messages to their peer whenever it wishes to.

Take a look at code samples in the docs/examples/js directory on GitHub. There you can find examples of Secure Session setup and usage.

First, both parties have to generate asymmetric keypairs and exchange their public keys. The private keys should never be shared with anyone else.

Note: Secure Session only supports EC keys. RSA support is available per request only.

Each party should also choose a unique peer ID – arbitrary byte sequence identifying their public key. Read more about peer IDs in Secure Session cryptosystem overview. The peer IDs need to be exchanged along with the public keys.

To identify peers, Secure Session uses a callback interface. This is just a callable function used to locate a public key associated with presented peer ID. Typically, each peer keeps some sort of a database of known public keys and fulfills Secure Session requests from that database.

Each peer initialises Secure Session with their ID, their private key, and an appropriate key callback:

const themis = require('wasm-themis')

let peerID = Uint8Array(...)
let privateKey = Uint8Array(...)

let session = new themis.SecureSession(peerID, privateKey,
    function(peerID) {
        // Get public key for the specified ID from local storage,
        // read it from file, etc.
        if (!found) {
              return null
        }
        return publicKey
    })
Note: The same callback interface may be shared by multiple Secure Session instances, provided it is correctly synchronised. Read more about thread safety of Secure Session.

Using Secure Session #

WasmThemis supports only buffer-aware API (aka wrap–unwrap mode). It is easy to integrate into existing applications with established network processing path.

Note: We consider buffer-aware API more fit for typical JavaScript applications, so currently Secure Session supports only this mode. However, if you find that callback-oriented API might be a good fit for your use case, let us know.

Establishing connection #

The client initiates the connection and sends the first request to the server:

let request = clientSession.connectionRequest()

sendToServer(request)

Then both parties communicate to negotiate the keys and other details until the connection is established:

while (!session.established()) {
    let request = receiveFromPeer()
    let reply = session.negotiateReply(request)
    sendToPeer(reply)
}

Exchanging messages #

After the session is established, the parties can proceed with actual message exchange. At this point the client and the server are equal peers – they can both send and receive messages independently, in a duplex manner.

Wrap the messages into Secure Session protocol and send them:

let message = Uint8Array(...)

let encryptedMessage = session.wrap(message)

sendToPeer(encryptedMessage)

You can wrap multiple messages before sending them out. Encrypted messages are independent.

Note: Secure Session allows occasional message loss, slight degree of out-of-order delivery, and some duplication. However, it is still a sequence-dependent protocol. Do your best to avoid interrupting the message stream.

After receiving an encrypted message, you need to unwrap it:

let encryptedMessage = receiveFromPeer()

try {
    let decryptedMessage = session.unwrap(encryptedMessage)
    // process a message
}
catch (error) {
    // handle corrupted messages
}

Secure Session ensures message integrity and will throw an exception if the message has been modified in-flight. It will also detect and report protocol anomalies, such as unexpected messages, outdated messages, etc.


Secure Comparator #

Secure Comparator is an interactive protocol for two parties that compares whether they share the same secret or not. It is built around a Zero-Knowledge Proof-based protocol (Socialist Millionaire’s Protocol), with a number of security enhancements.

Secure Comparator is transport-agnostic. That is, the implementation handles all intricacies of the protocol, but the application has to supply networking capabilities to exchange the messages.

Read more about Secure Comparator cryptosystem design to understand better the underlying considerations, get an overview of the protocol, etc.

Comparing secrets #

Secure Comparator has two parties called “client” and “server” for the sake of simplicity, but the only difference between the two is in who initiates the comparison.

Both parties start by initialising Secure Comparator with the secret they need to compare:

const themis = require('wasm-themis')

let sharedSecret = Uint8Array(...)

let comparison = new themis.SecureComparator(sharedSecret)

The client initiates the protocol and sends the message to the server:

let message = comparison.begin()

sendToPeer(message)

Now, each peer waits for a message from the other one, passes it to Secure Comparator, and gets a response that needs to be sent back. This should repeat until the comparison is complete:

for (;;) {
    let request = receiveFromPeer()
    let reply = comparison.proceed(request)
    if (comparison.complete()) {
        break
    }
    sentToPeer(reply)
}

Once the comparison is complete, you can get the results (on each side):

if (comparison.compareEqual()) {
    // shared secrets match
}

Secure Comparator performs consistency checks on the protocol messages and will throw an exception if they were corrupted. But if the other party fails to demonstrate that it has a matching secret, Secure Comparator will only return a negative result.