1.1.4 • Published 5 months ago

@mdip/cipher v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

MDIP cipher

MDIP cryptography utilities for encryption/decryption and creating/verifying signatures.

Installation

npm install @mdip/cipher

Usage

The cipher library comes in two versions for servers and web browsers. The classes are identical but have different package dependencies.

Node server applications

// Import using subpaths
import CipherNode from '@mdip/cipher/node';

//Non-subpath import
import CipherNode from '@mdip/cipher';

const cipher = new CipherNode();

Web browsers

// Import using subpaths
import CipherWeb from '@mdip/cipher/web';

//Non-subpath import
import CipherWeb from '@mdip/cipher';

const cipher = new CipherWeb();
1.1.1

5 months ago

1.1.0

6 months ago

1.0.0

8 months ago

1.1.4

5 months ago

1.1.3

5 months ago

1.1.2

5 months ago

0.5.0

10 months ago

0.4.0

12 months ago

0.6.0

9 months ago

0.3.0

1 year ago

0.1.0

1 year ago