function CryptTest::testHmacBase64Invalid

Tests the hmacBase64 method with invalid parameters.

@dataProvider providerTestHmacBase64Invalid @covers ::hmacBase64

Parameters

string $data: Data to hash.

string $key: Key to use in hashing process.

File

core/tests/Drupal/Tests/Component/Utility/CryptTest.php, line 62

Class

CryptTest
Tests random byte generation.

Namespace

Drupal\Tests\Component\Utility

Code

public function testHmacBase64Invalid($data, $key) {
  $this->expectException('InvalidArgumentException');
  Crypt::hmacBase64($data, $key);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.