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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
I
InfoQ
D
Docker
F
Fortinet All Blogs
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
B
Blog
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
罗磊的独立博客
博客园_首页
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
IT之家
IT之家
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
Are We Ignoring Cryptography's Golden Age?
Chathura Rathnayaka · 2026-06-23 · via DEV Community
Cover image for Are We Ignoring Cryptography's Golden Age?

Chathura Rathnayaka

Unveiling the Elegant Foundations: A Tutorial on the Vigenère Cipher

Introduction

In an era dominated by the dizzying complexity of zero-knowledge proofs, homomorphic encryption, and quantum-resistant algorithms, it's easy to overlook the origins of cryptography. Yet, as recent reports from digitized Bletchley Park archives vividly remind us, there was a "golden age" where intellectual ingenuity, not brute computational power, was the primary weapon in the cryptographic battle. This manual artistry, employing permutation and substitution ciphers, laid the foundational groundwork for everything we build today. As full-stack engineers, we often become engrossed in the latest frameworks and intricate system designs. However, taking a moment to appreciate the elegance and raw intellectual power behind simpler, foundational ciphers like the Vigenère reminds us of enduring principles and fosters a crucial sense of humility. This tutorial aims to bridge that gap, guiding you through a practical implementation of the Vigenère cipher to illustrate the beauty of these time-tested concepts.

Code Layout and Walkthrough: Implementing the Vigenère Cipher

The Vigenère cipher, conceived in the 16th century, represents a significant leap from simpler monoalphabetic substitution ciphers (like Caesar). It employs polyalphabetic substitution, using a keyword to determine multiple substitution alphabets, making it far more robust and challenging to break without the key. We'll implement this classic cipher in Python, focusing on clarity and modularity.

Our implementation will involve two core functions: vigenere_encrypt and vigenere_decrypt. Both will handle non-alphabetic characters by leaving them unchanged and convert all alphabetic input to uppercase for consistency, mirroring historical practices.

def vigenere_encrypt(plaintext: str, key: str) -> str:
    """
    Encrypts a plaintext string using the Vigenère cipher.

    Args:
        plaintext (str): The message to be encrypted.
        key (str): The keyword for encryption.

    Returns:
        str: The encrypted ciphertext.
    """
    ciphertext = []
    # Ensure key is uppercase and only alphabetic
    processed_key = [ord(char) - ord('A') for char in key.upper() if 'A' <= char <= 'Z']
    if not processed_key:
        raise ValueError("Key must contain at least one alphabetic character.")

    key_index = 0
    for char in plaintext:
        if 'A' <= char.upper() <= 'Z':
            # Determine shift based on current key character
            key_shift = processed_key[key_index % len(processed_key)]

            # Encrypt character
            start_ascii = ord('A') if 'A' <= char <= 'Z' else ord('a')
            encrypted_char_code = (ord(char.upper()) - ord('A') + key_shift) % 26
            ciphertext.append(chr(encrypted_char_code + start_ascii))

            # Move to the next key character for the next alphabetic character
            key_index += 1
        else:
            # Non-alphabetic characters are appended as-is
            ciphertext.append(char)

    return "".join(ciphertext)

def vigenere_decrypt(ciphertext: str, key: str) -> str:
    """
    Decrypts a ciphertext string using the Vigenère cipher.

    Args:
        ciphertext (str): The message to be decrypted.
        key (str): The keyword for decryption.

    Returns:
        str: The decrypted plaintext.
    """
    plaintext = []
    processed_key = [ord(char) - ord('A') for char in key.upper() if 'A' <= char <= 'Z']
    if not processed_key:
        raise ValueError("Key must contain at least one alphabetic character.")

    key_index = 0
    for char in ciphertext:
        if 'A' <= char.upper() <= 'Z':
            key_shift = processed_key[key_index % len(processed_key)]

            # Decrypt character
            start_ascii = ord('A') if 'A' <= char <= 'Z' else ord('a')
            decrypted_char_code = (ord(char.upper()) - ord('A') - key_shift + 26) % 26 # Add 26 to handle negative results
            plaintext.append(chr(decrypted_char_code + start_ascii))

            key_index += 1
        else:
            plaintext.append(char)

    return "".join(plaintext)

# --- Example Usage ---
if __name__ == "__main__":
    message = "The quick brown fox jumps over the lazy dog."
    secret_key = "Lemon" # The famous key from Vigenère's treatise

    print(f"Original Message: {message}")
    print(f"Encryption Key:   {secret_key}")

    encrypted_message = vigenere_encrypt(message, secret_key)
    print(f"Encrypted Message: {encrypted_message}")

    decrypted_message = vigenere_decrypt(encrypted_message, secret_key)
    print(f"Decrypted Message: {decrypted_message}")

    assert message.upper() == decrypted_message.upper() # Basic check for correctness
    print("\nDecryption successful and matches original (case-insensitive)!")

Walkthrough Details:

  1. Key Processing: The key is converted to uppercase and each character is transformed into a numerical shift value (0-25), representing its position in the alphabet (A=0, B=1, ..., Z=25). This processed key is then used cyclically.
  2. Character Iteration: We iterate through each character of the plaintext (or ciphertext).
  3. Alphabetic Check: Only alphabetic characters are processed. Non-alphabetic ones (spaces, punctuation, numbers) are appended directly to the result.
  4. Shift Calculation: For each alphabetic character, we determine the corresponding shift from the processed_key. The key_index % len(processed_key) ensures the key repeats if it's shorter than the message.
  5. Encryption Logic:
    • ord(char.upper()) - ord('A'): Converts the current letter to its 0-25 numerical representation.
    • + key_shift: Adds the shift value from the key.
    • % 26: Ensures the result wraps around the alphabet (e.g., 26 becomes 0, 27 becomes 1).
    • + start_ascii: Converts the numerical result back to its ASCII character representation, preserving the original case (though our current implementation converts to uppercase).
  6. Decryption Logic: The decryption process reverses encryption by subtracting the key_shift. We add + 26 before the final modulo operation to correctly handle potential negative results from the subtraction, ensuring positive values for the modulo.
  7. Result Assembly: All processed characters are joined to form the final ciphertext or plaintext.

Conclusion

Implementing the Vigenère cipher provides a tangible connection to the intellectual battles of Bletchley Park and beyond. It highlights how, before the advent of silicon and algorithms of unimaginable complexity, profound security (for its time) was achieved through elegant applications of substitution and modular arithmetic. This exercise underscores the core message from our initial reflection: foundational principles, beautifully applied, often endure longer than the latest framework. By engaging with these historical mechanisms, we gain not just technical understanding, but also a deeper appreciation for the ingenuity of our predecessors, reminding us that even in our pursuit of cutting-edge solutions, humility and an understanding of the roots of our craft are invaluable. May this small dive into classical cryptography inspire you to look beyond the immediate, to the underlying elegance that powers all complex systems.