Skip to content

SecurePixel JS SDK v1.0.0 - Initial Release

Latest

Choose a tag to compare

@kdippan kdippan released this 13 Jan 18:09
· 5 commits to main since this release
d5b07d7

📦 SecurePixel JS SDK v1.0.0

We are proud to release the official JavaScript SDK for SecurePixel. This lightweight library allows developers to integrate military-grade image encryption and steganography into their own applications with zero dependencies.

✨ Features

  • Zero Dependencies: Pure Vanilla JS implementation.
  • Client-Side Encryption: Uses Web Crypto API (AES-256-GCM).
  • Steganography Engine: Encrypts data into valid "Visual Noise" PNG images.
  • Universal Support: Works in all modern browsers.

🚀 Installation via CDN

You can start using this SDK immediately without downloading anything.

Production (Specific Version - Recommended):

<script src="https://cdn.jsdelivr.net/gh/KDippan/securepixel-js@v1.0.0/sdk.js"></script>

Development (Always Latest):

<script src="https://cdn.jsdelivr.net/gh/KDippan/securepixel-js@main/sdk.js"></script>

💻 Usage Example

const sp = new SecurePixel();
const encryptedBlob = await sp.encrypt(fileInput.files[0], "password123");

License: MIT