mirror of
https://github.com/cupcakearmy/occulto.git
synced 2024-11-01 06:04:17 +01:00
Isomorphic encryption library that works both in the browser and node.
.github/workflows | ||
.vscode | ||
src | ||
test | ||
.gitignore | ||
.karma.cjs | ||
.mocharc.yaml | ||
.npmrc | ||
CHANGELOG.md | ||
LICENSE | ||
package.json | ||
pnpm-lock.yaml | ||
README.md | ||
ROADMAP.md | ||
tsconfig.json | ||
typedoc.json |
occulto 🔒
Occulto /okˈkul.to/
hidden, concealed. secret.
Isomorphic encryption library that works both in the browser and node with no dependencies and written in Typescript.
Quickstart 🚀
Requirements
- Node >= 16 required
Install
npm i occulto
Examples
RSA
import { RSA } from 'occulto'
const pair = await RSA.generateKeyPair()
const encrypted = await RSA.encrypt('some text', pair.public)
const decrypted = await RSA.decrypt(encrypted, pair.private)
AES
import { Symmetric } from 'occulto'
const encrypted = await Symmetric.encryptEasy('some string', 'myPass')
const decrypted = await Symmetric.decryptEasy(encrypted, 'myPass')
Hash
import { Hash } from 'occulto'
const hash = Hash.digest('something')
const h = Hash.digest('something', Hash.Hashes.MD5)