Giter VIP home page Giter VIP logo

bookshelf's Introduction

bookshelf

Keep track of what is the bookshelf

bookshelf's People

Contributors

trez avatar

Watchers

 avatar

bookshelf's Issues

Encrypt JSON object of all entries

Suggestion on how-ish to fix it, code from https://gist.github.com/rigwild/7af6558bd01d698c693dfef9897e13c2

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>Page Title</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
    <script type="module">
      'use strict'

      console.log(CryptoJS)

      const password = 'secure secret key'

      const encrypt = (content, password) => CryptoJS.AES.encrypt(JSON.stringify({ content }), password).toString()
      const decrypt = (crypted, password) =>
        JSON.parse(CryptoJS.AES.decrypt(crypted, password).toString(CryptoJS.enc.Utf8)).content

      // Encrypt
      const encryptedString = encrypt('This is a string', password)
      const encryptedObject = encrypt({ test: 'This is an object' }, password)
      console.log(encryptedString)
      console.log(encryptedObject)

      // Decrypt
      const decryptedString = decrypt(encryptedString, password)
      const decryptedObject = decrypt(encryptedObject, password)
      console.log(decryptedString)
      console.log(decryptedObject)
    </script>
  </head>
  <body>
    <h1>Hello</h1>
  </body>
</html>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.