implementing-end-to-end-encryption-for-messaging skill (Anthropic-Cybersecurity-Skills)

From Public Agent Wiki

What it does. Implements a simplified Signal Protocol-style end-to-end encryption scheme for messaging, covering key exchange, forward secrecy, and the core cryptographic components so no server or intermediary can decrypt messages. Use when designing or building E2EE messaging, or evaluating forward-secrecy and key-management tradeoffs for a messaging system. Part of mukul975/Anthropic-Cybersecurity-Skills (817 security skills) (mukul975/Anthropic-Cybersecurity-Skills).

Upstream mukul975/Anthropic-Cybersecurity-Skills
Skill file skills/implementing-end-to-end-encryption-for-messaging/SKILL.md
License Apache-2.0 (skill folder LICENSE)
Author mukul975
Fetched 2026-09-10

Install

  • npx skills add mukul975/Anthropic-Cybersecurity-Skills --skill implementing-end-to-end-encryption-for-messaging, or copy the skill folder into ~/.claude/skills/implementing-end-to-end-encryption-for-messaging/.
  • Raw file: curl -sL https://raw.githubusercontent.com/mukul975/Anthropic-Cybersecurity-Skills/HEAD/skills/implementing-end-to-end-encryption-for-messaging/SKILL.md

SKILL.md (verbatim)

name: implementing-end-to-end-encryption-for-messaging
description: Implements a simplified Signal Protocol-style end-to-end encryption scheme for messaging, covering key exchange, forward secrecy, and the core cryptographic components so no server or intermediary can decrypt messages. Use when designing or building E2EE messaging, or evaluating forward-secrecy and key-management tradeoffs for a messaging system.
domain: cybersecurity
subdomain: cryptography
tags:
- cryptography
- encryption
- e2e
- messaging
- signal-protocol
version: '1.0'
author: mahipal
license: Apache-2.0
nist_csf:
- PR.DS-01
- PR.DS-02
- PR.DS-10
mitre_attack:
- T1600
- T1573
- T1553
- T1486

Implementing End-to-End Encryption for Messaging

Overview

End-to-end encryption (E2EE) ensures that only the communicating parties can read messages, with no intermediary (including the server) able to decrypt them. This skill implements a simplified version of the Signal Protocol's Double Ratchet algorithm, using X25519 for key exchange, HKDF for key derivation, and AES-256-GCM for message encryption.

When to Use

  • When deploying or configuring implementing end to end encryption for messaging capabilities in your environment
  • When establishing security controls aligned to compliance requirements
  • When building or improving security architecture for this domain
  • When conducting security assessments that require this implementation

Prerequisites

  • Familiarity with cryptography concepts and tools
  • Access to a test or lab environment for safe execution
  • Python 3.8+ with required dependencies installed
  • Appropriate authorization for any testing activities

Objectives

  • Implement X25519 Diffie-Hellman key exchange for session establishment
  • Build the Double Ratchet key management algorithm
  • Encrypt and decrypt messages with per-message keys
  • Implement forward secrecy (compromise of current key does not reveal past messages)
  • Handle out-of-order message delivery
  • Implement key agreement using X3DH (Extended Triple Diffie-Hellman)

Key Concepts

Signal Protocol Components

Component Purpose Algorithm
X3DH Initial key agreement X25519
Double Ratchet Ongoing key management X25519 + HKDF + AES-GCM
Sending Chain Per-message encryption keys HMAC-SHA256 chain
Receiving Chain Per-message decryption keys HMAC-SHA256 chain
Root Chain Derives new chain keys on DH ratchet HKDF

Forward Secrecy

Each message uses a unique encryption key derived from a ratcheting chain. After a key is used, it is deleted, ensuring that compromise of the current state does not reveal previously sent/received messages.

Security Considerations

  • Delete message keys immediately after decryption
  • Implement message ordering and replay protection
  • Use authenticated encryption (AES-GCM) for all messages
  • Protect identity keys with device-level security
  • Verify identity keys out-of-band (safety numbers)

Validation Criteria

  • X25519 key exchange produces shared secret
  • Messages encrypt and decrypt correctly between two parties
  • Different messages produce different ciphertexts
  • Forward secrecy: old keys cannot decrypt new messages
  • Out-of-order messages can be decrypted
  • Tampered messages are rejected by authentication

Other files in this skill

assets/template.md (verbatim)

E2E Encryption for Messaging Template

Protocol Summary

Phase Algorithm Purpose
Key Exchange X3DH (X25519) Initial shared secret
Key Ratchet Double Ratchet Per-message key derivation
Encryption AES-256-GCM Message confidentiality + integrity
Key Derivation HKDF-SHA256 Derive keys from DH outputs
Chain KDF HMAC-SHA256 Advance symmetric ratchet

Security Properties Checklist

  • Forward secrecy: Past messages safe if current keys compromised
  • Post-compromise security: Recovery after temporary key compromise
  • Deniability: No cryptographic proof of message authorship
  • Authenticated encryption: Tampered messages detected and rejected
  • Replay protection: Message counters prevent replay attacks
  • Out-of-order delivery: Skipped keys stored for late messages

Message Format

[Header (40 bytes)]
  - DH Public Key: 32 bytes
  - Previous Chain Length: 4 bytes (big-endian)
  - Message Number: 4 bytes (big-endian)

[Encrypted Payload]
  - Nonce: 12 bytes
  - Ciphertext + Tag: variable

Integration Notes

  • Identity keys should be stored in secure device storage (Keychain, TEE)
  • Implement safety number verification for identity key comparison
  • Handle device changes by re-running X3DH with new identity keys
  • Store skipped message keys with a maximum limit (e.g., 1000)
  • Delete message keys immediately after successful decryption

references/api-reference.md (verbatim)

API Reference — Implementing End-to-End Encryption for Messaging

Libraries Used

  • cryptography: X25519 key exchange, HKDF key derivation, AES-256-GCM encryption

CLI Interface

python agent.py keygen                                    # Generate X25519 key pair
python agent.py exchange                                  # Simulate key exchange
python agent.py demo                                      # Full E2EE demo flow
python agent.py encrypt --message <text> --key <hex>      # Encrypt message
python agent.py decrypt --nonce <hex> --ciphertext <hex> --key <hex>

Core Functions

generate_keypair()

Generates X25519 key pair for Diffie-Hellman key exchange.

  • X25519PrivateKey.generate() -> private key
  • private_key.public_key() -> public key
  • Returns hex-encoded private and public keys.

derive_shared_secret(my_private_hex, their_public_hex)

Performs X25519 ECDH key exchange and derives symmetric key via HKDF-SHA256.

  • my_private.exchange(their_public) -> 32-byte raw shared secret
  • HKDF(algorithm=SHA256(), length=32, info=b"e2ee-messaging-v1").derive(shared)

encrypt_message(message, shared_key_hex)

Encrypts plaintext using AES-256-GCM with random 12-byte nonce.

  • AESGCM(key).encrypt(nonce, plaintext, None) -> ciphertext with GCM tag

decrypt_message(nonce_hex, ciphertext_hex, shared_key_hex)

Decrypts and authenticates ciphertext. Raises InvalidTag if tampered.

Cryptography API Calls

Class Module Purpose
X25519PrivateKey cryptography.hazmat.primitives.asymmetric.x25519 ECDH private key
X25519PublicKey same ECDH public key
AESGCM cryptography.hazmat.primitives.ciphers.aead Authenticated encryption
HKDF cryptography.hazmat.primitives.kdf.hkdf Key derivation

Dependencies

pip install cryptography>=41.0

references/standards.md (verbatim)

Standards and References - End-to-End Encryption for Messaging

Signal Protocol Specifications

The Double Ratchet Algorithm

The X3DH Key Agreement Protocol

The Sesame Algorithm

Cryptographic Standards

RFC 7748 - Elliptic Curves for Security (X25519)

RFC 5869 - HKDF (HMAC-based Key Derivation Function)

RFC 8032 - Edwards-Curve Digital Signature Algorithm (Ed25519)

NIST SP 800-38D - AES-GCM

Python Libraries

cryptography

  • X25519: cryptography.hazmat.primitives.asymmetric.x25519
  • HKDF: cryptography.hazmat.primitives.kdf.hkdf
  • AES-GCM: cryptography.hazmat.primitives.ciphers.aead.AESGCM

references/workflows.md (verbatim)

Workflows - End-to-End Encryption for Messaging

Workflow 1: X3DH Key Agreement

Alice (initiator)                 Server                  Bob (responder)
  |                                 |                         |
  |                                 |<-- Register:            |
  |                                 |    Identity Key (IK_B)  |
  |                                 |    Signed PreKey (SPK_B)|
  |                                 |    One-Time PreKeys     |
  |                                 |                         |
  |-- Fetch Bob's Keys ----------->|                         |
  |<-- IK_B, SPK_B, OPK_B --------|                         |
  |                                 |                         |
  [Compute shared secret]:                                    |
  DH1 = DH(IK_A, SPK_B)                                     |
  DH2 = DH(EK_A, IK_B)                                      |
  DH3 = DH(EK_A, SPK_B)                                     |
  DH4 = DH(EK_A, OPK_B)                                     |
  SK = HKDF(DH1 || DH2 || DH3 || DH4)                      |
  |                                 |                         |
  |-- Send Initial Message ------->|-- Forward to Bob ------>|
  |   (IK_A, EK_A, OPK_id, msg)   |                         |
  |                                 |   [Bob computes same SK]|

Workflow 2: Double Ratchet (Sending)

[Message to Send]
      |
[Check: Do we have recipient's new DH public key?]
  YES --> [DH Ratchet Step]
          - Generate new DH key pair
          - Compute DH shared secret
          - Derive new root key + sending chain key via HKDF
  NO  --> [Continue with current sending chain]
      |
[Symmetric Ratchet: Derive message key from sending chain]
(chain_key, message_key) = HMAC(chain_key, constants)
      |
[Encrypt message with AES-256-GCM using message_key]
      |
[Include header: DH public key, previous chain length, message number]
      |
[Delete message_key from memory]

Workflow 3: Double Ratchet (Receiving)

[Received Encrypted Message + Header]
      |
[Check DH public key in header]
  [New key?]
    YES --> [DH Ratchet Step]
            - Compute DH shared secret
            - Derive new root key + receiving chain key
    NO  --> [Use current receiving chain]
      |
[Symmetric Ratchet: Derive message key]
      |
[Decrypt message with AES-256-GCM]
      |
[Verify authentication tag]
  FAIL --> Reject message
  PASS --> Return plaintext
      |
[Delete message_key from memory]

Workflow 4: Session Lifecycle

[Initial Contact] --> [X3DH Key Exchange]
                            |
                      [Initialize Double Ratchet]
                            |
                      [Exchange Messages]
                      (DH ratchet + symmetric ratchet)
                            |
                      [Periodic DH Ratchet]
                      (every N messages or on reply)
                            |
                      [Session End / Archive]

Back to mukul975/Anthropic-Cybersecurity-Skills (817 security skills) or Agent skills.