Isomorphic encryption library that works both in the browser and node.
Go to file
Nicco 56a8103582
2.0.0 (#3)
* rewrite

* testing worklflow

* sprcify version

* config stuff

* add hash as buffer

* delete docs

* use typedarray everywhere and docs

* readme

* aes

* cleanup

* rsa

* testing with playwright

* fix playwright

* readme

* docs

* update deps

* use headless

* add prepublish

* build pipeline

* move types up

* move types up

* add types legacy

* packaging

* versions bump

* cleanup

* maybe this time

* drop support for commonjs

* version bump

* cleanup
2022-10-18 15:53:43 +02:00
.github/workflows 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
.vscode 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
src 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
test 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
.gitignore 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
.karma.cjs 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
.mocharc.yaml 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
.npmrc 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
CHANGELOG.md 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
LICENSE 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
package.json 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
pnpm-lock.yaml 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
README.md 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
ROADMAP.md 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
tsconfig.json 2.0.0 (#3) 2022-10-18 15:53:43 +02:00
typedoc.json 2.0.0 (#3) 2022-10-18 15:53:43 +02:00

occulto 🔒

Occulto /okˈkul.to/

hidden, concealed. secret.

version badge downloads badge dependency count minzip size badge types badge

Isomorphic encryption library that works both in the browser and node with no dependencies and written in Typescript.

📒 API Documentation 📒

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

Available Modes

import { Symmetric } from 'occulto'

const encrypted = await Symmetric.encryptEasy('some string', 'myPass')
const decrypted = await Symmetric.decryptEasy(encrypted, 'myPass')

Hash

Available hashes

import { Hash } from 'occulto'

const hash = Hash.digest('something')

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