Skip to content

swiftyapp/aes-256-gcm-js

Repository files navigation

aes-256-gcm-js

AES 256 GCM encryption algorithm in JavaScript

Use

import { encrypt, decrypt } from "@swiftyapp/aes-256-gcm";

const encrypted = encrypt("some sensitive data", "password");
console.log(encrypted); // 79e103b37586b83002e92cc9...

const decrypted = decrypt(encrypted, "password");
console.log(decrypted); // some sensitive data

About

🔐 AES 256 GCM encryption algorithm in JavaScript

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors 2

  •  
  •