A Libsodium-based secure remote password scheme for PHP
·
Let’s geek out on my favorite form of authentication – not sending passwords over the wire in the first place!
·
Let’s geek out on my favorite form of authentication – not sending passwords over the wire in the first place!
·
PHP ships with multiple, native mechanisms for comparing arbitrary string values. Let’s take a closer look at two that quantify “sameness.”
·
Sometimes, certain design patterns can aid in security as well as reusability of code. Let’s look at value objects as an example.
·
Learn how password reset and other tokens can be secured by splitting the data and leveraging common password hash methodologies.
·
Every successful development team has two things in common: They’ve shipped a product, and they accepted compromises to make that shipment possible.
·
Breaking encryption is fun. Building an encryption cipher is even more so! Let’s continue our Cryptopals journey with XOR.
·
Now that we know how to crack a single-byte XOR cipher, let’s expand and crack even more through Cryptopals’ next challenge.
·
Next up in our Cryptopals walkthrough is some frequency analysis against simple cryptographic keys. Let’s have some fun!
·
Building on our cryptopals encoding work last time, let’s introduce byte-based XOR operations.
·
Challenge 1 in the cryptopals suite is to juggle between Base64 and Hex encoding of byte strings. Let’s do just that, with value objects!