| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Utility;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\Crypto\Mcrypt;
- use Cake\Utility\Crypto\OpenSsl;
- use Cake\Utility\Security;
- /**
- * SecurityTest class
- */
- class SecurityTest extends TestCase
- {
- /**
- * testHash method
- *
- * @return void
- */
- public function testHash()
- {
- $_hashType = Security::$hashType;
- $key = 'someKey';
- $hash = 'someHash';
- $this->assertSame(40, strlen(Security::hash($key, null, false)));
- $this->assertSame(40, strlen(Security::hash($key, 'sha1', false)));
- $this->assertSame(40, strlen(Security::hash($key, null, true)));
- $this->assertSame(40, strlen(Security::hash($key, 'sha1', true)));
- $result = Security::hash($key, null, $hash);
- $this->assertSame($result, 'e38fcb877dccb6a94729a81523851c931a46efb1');
- $result = Security::hash($key, 'sha1', $hash);
- $this->assertSame($result, 'e38fcb877dccb6a94729a81523851c931a46efb1');
- $hashType = 'sha1';
- Security::setHash($hashType);
- $this->assertSame($hashType, Security::$hashType);
- $this->assertSame(40, strlen(Security::hash($key, null, true)));
- $this->assertSame(40, strlen(Security::hash($key, null, false)));
- $this->assertSame(32, strlen(Security::hash($key, 'md5', false)));
- $this->assertSame(32, strlen(Security::hash($key, 'md5', true)));
- $hashType = 'md5';
- Security::setHash($hashType);
- $this->assertSame($hashType, Security::$hashType);
- $this->assertSame(32, strlen(Security::hash($key, null, false)));
- $this->assertSame(32, strlen(Security::hash($key, null, true)));
- $this->assertSame(64, strlen(Security::hash($key, 'sha256', false)));
- $this->assertSame(64, strlen(Security::hash($key, 'sha256', true)));
- Security::setHash($_hashType);
- }
- /**
- * testInvalidHashTypeException
- *
- * @expectedException \RuntimeException
- * @expectedExceptionMessageRegExp /The hash type `doesnotexist` was not found. Available algorithms are: \w+/
- * @return void
- */
- public function testInvalidHashTypeException()
- {
- Security::hash('test', 'doesnotexist', false);
- }
- /**
- * testRijndael method
- *
- * @return void
- */
- public function testRijndael()
- {
- $this->skipIf(!function_exists('mcrypt_encrypt') || version_compare(PHP_VERSION, '7.1', '>='));
- $engine = Security::engine();
- Security::engine(new Mcrypt());
- $txt = 'The quick brown fox jumped over the lazy dog.';
- $key = 'DYhG93b0qyJfIxfs2guVoUubWwvniR2G0FgaC9mi';
- $result = Security::rijndael($txt, $key, 'encrypt');
- $this->assertEquals($txt, Security::rijndael($result, $key, 'decrypt'));
- $result = Security::rijndael('', $key, 'encrypt');
- $this->assertEquals('', Security::rijndael($result, $key, 'decrypt'));
- $key = 'this is my key of over 32 chars, yes it is';
- $result = Security::rijndael($txt, $key, 'encrypt');
- $this->assertEquals($txt, Security::rijndael($result, $key, 'decrypt'));
- Security::engine($engine);
- }
- /**
- * testRijndaelInvalidOperation method
- *
- * @return void
- */
- public function testRijndaelInvalidOperation()
- {
- $this->expectException(\InvalidArgumentException::class);
- $txt = 'The quick brown fox jumped over the lazy dog.';
- $key = 'DYhG93b0qyJfIxfs2guVoUubWwvniR2G0FgaC9mi';
- Security::rijndael($txt, $key, 'foo');
- }
- /**
- * testRijndaelInvalidKey method
- *
- * @return void
- */
- public function testRijndaelInvalidKey()
- {
- $this->expectException(\InvalidArgumentException::class);
- $txt = 'The quick brown fox jumped over the lazy dog.';
- $key = 'too small';
- Security::rijndael($txt, $key, 'encrypt');
- }
- /**
- * Test encrypt/decrypt.
- *
- * @return void
- */
- public function testEncryptDecrypt()
- {
- $txt = 'The quick brown fox';
- $key = 'This key is longer than 32 bytes long.';
- $result = Security::encrypt($txt, $key);
- $this->assertNotEquals($txt, $result, 'Should be encrypted.');
- $this->assertNotEquals($result, Security::encrypt($txt, $key), 'Each result is unique.');
- $this->assertEquals($txt, Security::decrypt($result, $key));
- }
- /**
- * Test that changing the key causes decryption to fail.
- *
- * @return void
- */
- public function testDecryptKeyFailure()
- {
- $txt = 'The quick brown fox';
- $key = 'This key is longer than 32 bytes long.';
- $result = Security::encrypt($txt, $key);
- $key = 'Not the same key. This one will fail';
- $this->assertFalse(Security::decrypt($txt, $key), 'Modified key will fail.');
- }
- /**
- * Test that decrypt fails when there is an hmac error.
- *
- * @return void
- */
- public function testDecryptHmacFailure()
- {
- $txt = 'The quick brown fox';
- $key = 'This key is quite long and works well.';
- $salt = 'this is a delicious salt!';
- $result = Security::encrypt($txt, $key, $salt);
- // Change one of the bytes in the hmac.
- $result[10] = 'x';
- $this->assertFalse(Security::decrypt($result, $key, $salt), 'Modified hmac causes failure.');
- }
- /**
- * Test that changing the hmac salt will cause failures.
- *
- * @return void
- */
- public function testDecryptHmacSaltFailure()
- {
- $txt = 'The quick brown fox';
- $key = 'This key is quite long and works well.';
- $salt = 'this is a delicious salt!';
- $result = Security::encrypt($txt, $key, $salt);
- $salt = 'humpty dumpty had a great fall.';
- $this->assertFalse(Security::decrypt($result, $key, $salt), 'Modified salt causes failure.');
- }
- /**
- * Test that short keys cause errors
- *
- * @return void
- */
- public function testEncryptInvalidKey()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('Invalid key for encrypt(), key must be at least 256 bits (32 bytes) long.');
- $txt = 'The quick brown fox jumped over the lazy dog.';
- $key = 'this is too short';
- Security::encrypt($txt, $key);
- }
- /**
- * Test encrypting falsey data
- *
- * @return void
- */
- public function testEncryptDecryptFalseyData()
- {
- $key = 'This is a key that is long enough to be ok.';
- $result = Security::encrypt('', $key);
- $this->assertSame('', Security::decrypt($result, $key));
- $result = Security::encrypt(false, $key);
- $this->assertSame('', Security::decrypt($result, $key));
- $result = Security::encrypt(null, $key);
- $this->assertSame('', Security::decrypt($result, $key));
- $result = Security::encrypt(0, $key);
- $this->assertSame('0', Security::decrypt($result, $key));
- $result = Security::encrypt('0', $key);
- $this->assertSame('0', Security::decrypt($result, $key));
- }
- /**
- * Test that short keys cause errors
- *
- * @return void
- */
- public function testDecryptInvalidKey()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('Invalid key for decrypt(), key must be at least 256 bits (32 bytes) long.');
- $txt = 'The quick brown fox jumped over the lazy dog.';
- $key = 'this is too short';
- Security::decrypt($txt, $key);
- }
- /**
- * Test that empty data cause errors
- *
- * @return void
- */
- public function testDecryptInvalidData()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('The data to decrypt cannot be empty.');
- $txt = '';
- $key = 'This is a key that is long enough to be ok.';
- Security::decrypt($txt, $key);
- }
- /**
- * Test that values encrypted with open ssl can be decrypted with mcrypt and the reverse.
- *
- * @group deprecated
- * @return void
- */
- public function testEngineEquivalence()
- {
- $this->skipIf(!function_exists('mcrypt_encrypt') || version_compare(PHP_VERSION, '7.1', '>='), 'This needs mcrypt extension to be loaded.');
- $this->deprecated(function () {
- $restore = Security::engine();
- $txt = "Obi-wan you're our only hope";
- $key = 'This is my secret key phrase it is quite long.';
- $salt = 'A tasty salt that is delicious';
- Security::engine(new Mcrypt());
- $cipher = Security::encrypt($txt, $key, $salt);
- $this->assertEquals($txt, Security::decrypt($cipher, $key, $salt));
- Security::engine(new OpenSsl());
- $this->assertEquals($txt, Security::decrypt($cipher, $key, $salt));
- Security::engine(new OpenSsl());
- $cipher = Security::encrypt($txt, $key, $salt);
- $this->assertEquals($txt, Security::decrypt($cipher, $key, $salt));
- Security::engine(new Mcrypt());
- $this->assertEquals($txt, Security::decrypt($cipher, $key, $salt));
- });
- }
- /**
- * Tests that the salt can be set and retrieved
- *
- * @return void
- */
- public function testSalt()
- {
- Security::setSalt('foobarbaz');
- $this->assertEquals('foobarbaz', Security::getSalt());
- }
- /**
- * Tests that the salt can be set and retrieved
- *
- * @return void
- */
- public function testGetSetSalt()
- {
- Security::setSalt('foobarbaz');
- $this->assertEquals('foobarbaz', Security::getSalt());
- }
- /**
- * Test the randomBytes method.
- *
- * @return void
- */
- public function testRandomBytes()
- {
- $value = Security::randomBytes(16);
- $this->assertSame(16, strlen($value));
- $value = Security::randomBytes(64);
- $this->assertSame(64, strlen($value));
- $this->assertRegExp('/[^0-9a-f]/', $value, 'should return a binary string');
- }
- /**
- * Test the randomString method.
- *
- * @return void
- */
- public function testRandomString()
- {
- $value = Security::randomString(7);
- $this->assertSame(7, strlen($value));
- $value = Security::randomString();
- $this->assertSame(64, strlen($value));
- $this->assertRegExp('/^[0-9a-f]+$/', $value, 'should return a ASCII string');
- }
- /**
- * Test the insecureRandomBytes method
- *
- * @return void
- */
- public function testInsecureRandomBytes()
- {
- $value = Security::insecureRandomBytes(16);
- $this->assertSame(16, strlen($value));
- $value = Security::insecureRandomBytes(64);
- $this->assertSame(64, strlen($value));
- $this->assertRegExp('/[^0-9a-f]/', $value, 'should return a binary string');
- }
- /**
- * test constantEquals
- *
- * @return void
- */
- public function testConstantEquals()
- {
- $this->assertFalse(Security::constantEquals('abcde', null));
- $this->assertFalse(Security::constantEquals('abcde', false));
- $this->assertFalse(Security::constantEquals('abcde', true));
- $this->assertFalse(Security::constantEquals('abcde', 1));
- $this->assertFalse(Security::constantEquals(null, 'abcde'));
- $this->assertFalse(Security::constantEquals(false, 'abcde'));
- $this->assertFalse(Security::constantEquals(1, 'abcde'));
- $this->assertFalse(Security::constantEquals(true, 'abcde'));
- $this->assertTrue(Security::constantEquals('abcde', 'abcde'));
- $this->assertFalse(Security::constantEquals('abcdef', 'abcde'));
- $this->assertFalse(Security::constantEquals('abcde', 'abcdef'));
- $this->assertFalse(Security::constantEquals('a', 'abcdef'));
- $snowman = "\xe2\x98\x83";
- $this->assertTrue(Security::constantEquals($snowman, $snowman));
- $this->assertFalse(Security::constantEquals(str_repeat($snowman, 3), $snowman));
- }
- }
|