@adorsys/crypto-codecsdeprecated

[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier) [![Travis](https://img.shields.io/travis/adorsys/crypto-codecs.svg)](https://travis-ci.org/adorsys/crypto-codecs) [![Coveralls](h

Usage no npm install needed!

<script type="module">
  import adorsysCryptoCodecs from 'https://cdn.skypack.dev/@adorsys/crypto-codecs';
</script>

README

Crypto Codecs

styled with prettier Travis Coveralls Dev Dependencies Donate

A project for encrypting and decrypting anything

Features

  • Support for JWE (Json Web Encryption)
  • Promise based interfaces
  • Encrypting and Decrypting everything (number, string, boolean, array, date, regex, buffer, object)

Installation

npm install @adorsys/crypto-codecs

Usage

import { codecs, util } from 'crypto-codecs'
// ...or
const { codecs, util } = require('../src')

// Without providing a key
codecs.jwe()
  .then(codec => {
    codec.encrypt({test: 42})
      .then(cipher => codec.decrypt(cipher))
      .then(value => value) // {test: 42}
  })
  .catch(err => console.log(err))

// With providing a key
let Key
util.jwk.generate()
  .then(k => {
    // remember key for later use
    Key = k
    return codecs.jwe({Key})
  })
  .then(codec => codec.encrypt({test: 42}))
  .then(cipher => codecs.jwe({Key}).then(codec => codec.decrypt(cipher)))
  .then(value => value) // {test: 42}
  .catch(err => console.log(err))

API

@adorsys/crypto-codecs

Credits

Made with :heart: by gradorsys and all these wonderful contributors (emoji key):


Francis Pouatcha
🤔

This project follows the all-contributors specification. Contributions of any kind are welcome!