惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
博客园 - 聂微东
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
博客园 - 司徒正美
爱范儿
爱范儿
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
博客园 - 【当耐特】
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
人人都是产品经理
人人都是产品经理
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Introducing AES Encryption: A Quick Tour
Goksel Yesiller · 2026-06-21 · via DEV Community

Goksel Yesiller

Developers implementing client-side encryption face a fundamental challenge: correctly implementing AES encryption requires deep knowledge of key derivation, initialization vectors, and authentication tags. One mistake in parameter selection or implementation can compromise the entire security model. The AES Encryption tool addresses this by providing a reference implementation that handles the cryptographic complexity while keeping sensitive data entirely within the browser.

Why it stands out

Most encryption tools fall into two problematic categories: server-based services that require trusting a third party with your plaintext, or complex libraries that require significant integration work. This tool occupies a unique position — it implements proper AES-GCM encryption with PBKDF2 key derivation using only the Web Crypto API, demonstrating how to build secure encryption without external dependencies.

The implementation choices reflect current cryptographic best practices: AES-GCM for authenticated encryption, PBKDF2 with 100,000 iterations for key stretching, and proper random generation for salts and initialization vectors. As one of 200+ free browser tools on DevTools, it operates with no signup, no tracking — data processed entirely in the browser.

What it is

The AES Encryption tool implements AES-256-GCM encryption with PBKDF2 key derivation through the Web Crypto API. The tool generates cryptographically secure random values for salts and initialization vectors, derives encryption keys from passphrases using PBKDF2-HMAC-SHA256, and produces self-contained encrypted outputs that include all parameters necessary for decryption.

The architecture ensures that plaintext, passphrases, and derived keys exist only in browser memory. The Web Crypto API provides the underlying cryptographic primitives, leveraging the browser's native implementation for both security and performance.

How to use it

The interface exposes two operations: encryption and decryption. For encryption, enter plaintext and a passphrase. The tool generates a 16-byte salt and 12-byte initialization vector using crypto.getRandomValues(), then derives a 256-bit key:

// Key derivation process
const salt = crypto.getRandomValues(new Uint8Array(16));
const iv = crypto.getRandomValues(new Uint8Array(12));

const keyMaterial = await crypto.subtle.importKey(
  "raw",
  encoder.encode(passphrase),
  "PBKDF2",
  false,
  ["deriveKey"]
);

const key = await crypto.subtle.deriveKey(
  {
    name: "PBKDF2",
    salt: salt,
    iterations: 100000,
    hash: "SHA-256"
  },
  keyMaterial,
  { name: "AES-GCM", length: 256 },
  false,
  ["encrypt", "decrypt"]
);

The encryption operation produces a base64-encoded output containing the salt, IV, and ciphertext with authentication tag. This self-contained format ensures portability — the encrypted data includes everything needed for decryption.

For decryption, paste the encrypted output and provide the original passphrase. The tool parses the embedded parameters, re-derives the key using the same PBKDF2 process, and attempts decryption. Failed authentication (wrong passphrase or tampered data) results in a clear error.

When to reach for it

Several scenarios benefit from browser-based AES encryption. During development of applications with client-side encryption requirements, the tool serves as a reference for proper implementation patterns. Developers can encrypt test data, configuration values, or API keys without installing additional software.

For debugging encryption-related issues, the tool provides a known-good implementation to verify expected outputs. When an application's encryption produces unexpected results, developers can use this tool to isolate whether the issue lies in their key derivation, encryption parameters, or data encoding.

The tool also functions as an educational resource. Developers new to Web Crypto API can examine a working implementation of AES-GCM with proper key derivation, understanding how the pieces fit together before implementing similar functionality in their applications.

Security auditors and penetration testers find value in quickly encrypting payloads or decrypting intercepted data during assessments, particularly when working with applications that implement similar AES-GCM schemes.

Technical implementation details

The tool demonstrates several cryptographic best practices. PBKDF2 iteration count is set to 100,000 — a balance between security and browser performance. The 96-bit IV size aligns with GCM mode recommendations. Salt generation uses cryptographically secure randomness, ensuring unique key derivation even with password reuse.

Error handling distinguishes between different failure modes: invalid base64 encoding, missing parameters, and authentication failures each produce specific error messages. This granular feedback helps developers debug integration issues with their own implementations.

The output format uses a simple concatenation scheme: base64(salt || iv || ciphertext). While not a standard format like JWE, this approach minimizes complexity while maintaining all necessary decryption parameters.

Try it yourself

The tool is available at devtools.tools/aes-encryption. It runs entirely in the browser and takes about 30 seconds to encrypt your first piece of data. No installation, no account creation, no data leaves your device.

Related tools

  • Base64 Encoder/Decoder: Convert between text and base64 encoding for data transmission
  • HMAC Generator: Create Hash-based Message Authentication Codes for message verification
  • UUID Generator: Generate cryptographically secure UUIDs for unique identifiers

P.S. If you're implementing client-side encryption in your own applications, consider this tool a baseline for comparison. The Web Crypto API makes secure encryption accessible — the challenge lies in getting the details right.


Try it: AES Encryption on DevTools