MDIP cryptography utilities for encryption/decryption and creating/verifying signatures.
npm install @mdip/cipher
The cipher library comes in two versions for servers and web browsers. The classes are identical but have different package dependencies.
import CipherNode from '@mdip/cipher/node';
const cipher = new CipherNode();
import CipherWeb from '@mdip/cipher/web';
const cipher = new CipherWeb();