Sortable encryption

When the data is fully end-to-end encrypted, nobody even the server can decrypt and read / analyse the data. To do range queries like sort table by last name the server must know the decrypted value. The encryption only works in groups.

With the sortable encryption it is not needed anymore. The encrypted produces numbers which follows the order of the plaintext and can be used with any database or backend.

Like: encrypt(1) < encrypt(2) < encrypt(3) < encrypt(5000)

Now it is possible to do range queries or sort rows without decrypt it.

WARNING

The encryption is not as secure as the symmetric or asymmetric encryption.

This is why sentc never encrypt the whole plaintext.

You can encrypt numbers or strings. Numbers are fully encrypted, for strings only the first 4 characters will be encrypted and the rest gets ignored.

Use this technic only in combination with the symmetric encryption to encrypt a value symmetrically so the user can decrypt it and also encrypt it with the sortable encryption to do range queries in your backend.

Encrypt a number

The maximum number to encrypt is 65532.

const a = group.encryptSortableRawNumber(262);
const b = group.encryptSortableRawNumber(263);
const c = group.encryptSortableRawNumber(65321);

//a < b < c

To get more information about how the value is encrypted, you can use this function instead:

It returns the number as the first param, the used algorithms and the used key id.

const [number, alg, key_id] = group.encryptSortableNumber(262);

Encrypt a string

Only the first 4 characters will be used to encrypt the string the rest will be ignored.

Strings with umlauts or other non english character are not supported. Alternative you can use the english version like รถ ot oe

But you can write your own function that creates a number and encrypt the number.

const a = group.encryptSortableRawString("abc");
const b = group.encryptSortableRawString("dfg");
const c = group.encryptSortableRawString("hij");

//a < b < c

To get more information from the encrypted strings use this function:

It returns the number as the first param, the used algorithms and the used key id.

const [number, alg, key_id] = group.encryptSortableString("abc");
Last Updated: