0.0.8 • Published 6 years ago

learn-crypto v0.0.8

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Learn Crypto

Personal project to (re)learn common cryptography.

Please don't use this for serious production apps! As the saying goes, Don't roll your own

// NOTE: Code needs to be run in an environment with String.fromCodePoint. // Might need to polyfill if environment is missing the function (e.g, IE11) // import "core-js/fn/string/from-code-point";

TODO

  • publish package to npm

Quick start

npm install learn-crypto
import { createCipher } from 'learn-crypto'

const cipher = createCipher();

const key = "super_secret_key"
const msg = "super_secret_message"
const ciphertext = cipher.encrypt(msg, key)
// "æÊÆäÊè¾ØÊìæÆÊ×"
const msg = cipher.decrypt(ciphertext, key)
// "super_secret_message"
0.0.8

6 years ago

0.0.7

6 years ago

0.0.1

6 years ago