![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
aes-256-gcm
Advanced tools
A static class that simplifies encryption/decryption using the AES 256 GCM algorithm.
Just use a one-liner to encrypt or decrypt - the IV and tag are handled automatically.
const Aes = require('aes-256-gcm');
// Must be 32 bytes.
const SHARED_SECRET = '12345678901234567890123456789012';
// Encrypt:
let { ciphertext, iv, tag } = Aes.encrypt('hi', SHARED_SECRET);
// ciphertext: 'VOE='
// iv: '0K6oPWsBAHLXYtLu5VAvsQ=='
// tag: 'hCae3Lt5sAK3oNAnUh5emA=='
// Decrypt:
let cleartext = Aes.decrypt(ciphertext, iv, tag, SHARED_SECRET;
// `cleartext` contains:
// 'hi'
Encrypts the text
using the 256-bit shared key (secret
) and returns an object
containing three base64-encoded strings:
{
"ciphertext": "(string)",
"iv": "(string)",
"tag": "(string)"
}
All of those strings must be passed to the end user to successfully decrypt the text.
Decrypts the ciphertext
using the iv
and authentication tag tag
received
from the encryption function, and using the 256-bit shared key (secret
).
Returns the decoded string.
FAQs
Simplifies encryption/decryption using the AES 256 GCM algorithm.
The npm package aes-256-gcm receives a total of 306 weekly downloads. As such, aes-256-gcm popularity was classified as not popular.
We found that aes-256-gcm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.