mirror of
https://github.com/cupcakearmy/occulto.git
synced 2024-12-22 03:56:29 +00:00
Isomorphic encryption library that works both in the browser and node.
.github/workflows | ||
.vscode | ||
src | ||
test | ||
.gitignore | ||
.karma.cjs | ||
.mocharc.yaml | ||
.npmrc | ||
package.json | ||
pnpm-lock.yaml | ||
README.md | ||
ROADMAP.md | ||
tsconfig.cjs.json | ||
tsconfig.esm.json | ||
tsconfig.json | ||
typedoc.json |
occulto 🔒
Occulto /okˈkul.to/
hidden, concealed. secret.
High level wrapper around the node native crypto API.
No Deps & Typescript typings included
Supports Hashes, Symmetric AES & ChaCha20 ciphers and Asymmetric RSA.
Quickstart 🚀
Requirements
- Node >= 16 required
Install
npm i occulto
Examples
RSA
import { RSA } from 'occulto'
const pair = await RSA.gen()
const encrypted = RSA.encrypt('some text', pair.pub)
const decrypted = RSA.decrypt(encrypted, pair.prv)
Symmetric
import { Symmetric } from 'occulto'
const encrypted = Symmetric.encrypt('some string', 'myPass', Symmetric.Ciphers.AES_128_GCM)
const decrypted = Symmetric.decrypt(encrypted, 'myPadd')
Hash
import { Hash } from 'occulto'
const hash = Hash.digest('something')
const h = Hash.digest('something', Hash.Hashes.MD5)