Isomorphic encryption library that works both in the browser and node.
Go to file
2019-07-07 21:39:31 +02:00
docs docs fix 2019-07-07 21:33:55 +02:00
src added chacha20 & hashes 2019-07-07 21:20:05 +02:00
test little hashing test 2019-04-10 10:42:11 +02:00
.gitignore initial commit 2019-03-30 20:50:04 +01:00
.npmignore initial commit 2019-03-30 20:50:04 +01:00
package.json docs 2019-07-07 21:20:42 +02:00
README.md Update README.md 2019-07-07 21:39:31 +02:00
tsconfig.json stricter typing 2019-04-10 10:42:31 +02:00

occulto 🔒

High level wrapper around forge.

Supports Hashes, Symmetric AES & ChaCha20 ciphers and Asymmetric RSA.

Typescript typings included

Quickstart 🚀

Install
npm i node-forge occulto
// Whatever import you prefer
// const { RSA } = require('occulto')
import { RSA } from 'occulto'

const pair = await RSA.gen()

const encrypted = RSA.encrypt('some string', 'myPass')
const decrypted = RSA.decrypt(encrypted, 'myPass')

📒 DOCS HERE 📒

Examples

RSA

const pair = await RSA.gen()
const encrypted = RSA.encrypt('some text', pair.pub)
const decrypted = RSA.decrypt(encrypted, pair.prv)

Symmetric

// Whatever import you prefer
// const { Symmetric } = require('occulto')
import { Symmetric } from 'occulto'

const encrypted = Symmetric.encrypt('some string' , 'myPass', Symmetric.Ciphers.AES_128_GCM)
const decrypted = Symmetric.decrypt(encrypted, 'myPadd')

Hash

// Whatever import you prefer
// const { Hash } = require('occulto')
import { Hash } from 'occulto'

const hash = Hash.digest('something')

const h = Hash.digest('something', Hashes.MD5)