Skip to content

team-reflect/kiss-crypto

Repository files navigation

kiss-crypto

Easily encrypt and decrypt messages. All the complexity is hidden behind the scenes.

Usage

import { encrypt, decrypt, generateEncryptionKey } from 'kiss-crypto'

const key = await generateEncryptionKey()

const plaintext = 'hello world'

const ciphertext = await encrypt({
  plaintext,
  key,
})

const decrypted = await decrypt({
  ciphertext,
  key,
})

expect(decrypted).toEqual(plaintext)

And to turn passwords into encryption keys

const password = 'password1'
const salt = await generateSalt()
const hash = await hashPassword({ password, salt })

expect(hash.length).toEqual(512)