← CodeClarityLab Home
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — #encryption educational data only
| |
Last 30 days
5 pings — 2026-04-10 F 1 ping — 2026-04-11 S 2 pings — 2026-04-12 S 2 pings — 2026-04-13 M 0 pings — 2026-04-14 T 0 pings — 2026-04-15 W 0 pings — 2026-04-16 T 4 pings — 2026-04-17 F 2 pings — 2026-04-18 S 2 pings — 2026-04-19 S 2 pings — 2026-04-20 M 0 pings — 2026-04-21 T 2 pings — 2026-04-22 W 0 pings — 2026-04-23 T 5 pings — 2026-04-24 F 4 pings — 2026-04-25 S 2 pings — 2026-04-26 S 1 ping — 2026-04-27 M 1 ping — 2026-04-28 T 0 pings — 2026-04-29 W 4 pings — 2026-04-30 T 6 pings — 2026-05-01 F 3 pings — 2026-05-02 S 1 ping — 2026-05-03 S 1 ping — 2026-05-04 M 2 pings — 2026-05-05 T 0 pings — 2026-05-06 W 4 pings — 2026-05-07 T 3 pings — Yesterday F 5 pings — Today S
Amazonbot 2
Amazonbot 61Perplexity 37Unknown AI 14Google 13Ahrefs 12Claude 7ChatGPT 3Meta AI 3SEMrush 3Qwen 1
crawler 146 crawler_json 5 pre-tracking 3
Tag total154 pings Terms pinged7 / 7 Distinct agents9
Level All Beginner Intermediate Advanced Tag: encryption
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
HTTPS & TLS
HTTP over TLS — encrypts all traffic between browser and server, preventing eavesdropping, man-in-the-middle attacks, and tampering. Required for cookies, modern APIs, and all production web applications.
2mo ago security beginner
mcrypt Deprecation — Migrate to OpenSSL PHP 5.0+
mcrypt was deprecated in PHP 7.1 and removed in PHP 7.2 — migrate all encryption to OpenSSL (openssl_encrypt) or libsodium (sodium_crypto_secretbox).
2mo ago php intermediate
PHP Sodium Extension (Libsodium) PHP 7.2+
The Sodium extension (bundled since PHP 7.2) provides modern, misuse-resistant cryptography via the libsodium C library — covering authenticated encryption, key exchange, password hashing with Argon2, and digital signatures with a simple, safe API.
2mo ago php advanced
Block Cipher Modes PHP 7.1+
How a block cipher (AES) processes data larger than one block — ECB is insecure, CBC requires a MAC, GCM provides authenticated encryption and is the correct choice.
2mo ago cryptography advanced
Column-Level Encryption PHP 7.1+
Encrypting sensitive database columns (SSN, credit card, medical data) — application holds the key; database never sees plaintext; breach exposes only ciphertext.
2mo ago database advanced
Symmetric Encryption PHP 7.2+
Encryption where the same key encrypts and decrypts data — fast and suitable for bulk data, but key distribution is the primary challenge.
2mo ago cryptography advanced
Diagram: TLS Handshake TLS Handshake
The negotiation process between client and server that establishes an encrypted HTTPS connection, agreeing on cipher suites and exchanging keys.
2mo ago networking intermediate
✓ schema.org compliant