From: Roland Häder Date: Mon, 27 Oct 2008 07:41:36 +0000 (+0000) Subject: Assertion added to crypto helper (CAPTCHA might still be broken, why?) X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=commitdiff_plain;h=29266e780769e83234f586c9e5779e3ebc593264 Assertion added to crypto helper (CAPTCHA might still be broken, why?) --- diff --git a/inc/classes/main/crypto/class_CryptoHelper.php b/inc/classes/main/crypto/class_CryptoHelper.php index 2ebafd8..1ccdaae 100644 --- a/inc/classes/main/crypto/class_CryptoHelper.php +++ b/inc/classes/main/crypto/class_CryptoHelper.php @@ -241,6 +241,11 @@ class CryptoHelper extends BaseFrameworkSystem implements Cryptable { // Get the real string out $strArray = explode("|", $garbageString); + + // Does the element count match? + assert(count($strArray) == 3); + + // Decode the string $str = base64_decode($strArray[1]); // Trim trailing nulls away