1.0.2 • Published 3 years ago

tiny-enc v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

🔐 tiny-enc - Tiny text encryption for modern browsers

last commit bundle size version downloads license

Tiny text encryption library for browser. It does use SubtleCrypto and async/await so it requires a secure context and a modern browser.

<script type="module">
  import tinyEnc from "https://unpkg.com/tiny-enc";
  // use it as a module or just copy/paste the code

  await tinyEnc.encrypt("password", "Hello, World"); // KA+e+PmeSy0osLFTjTgrxFZAoLJ7iixh89G7TkuyHEQ=
  await tinyEnc.decrypt("password", "KA+e+PmeSy0osLFTjTgrxFZAoLJ7iixh89G7TkuyHEQ="); // Hello, World
</script>