OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
aws-ses
/
vendor
/
aws
/
aws-sdk-php
/
tests
/
Crypto
/
Polyfill
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📄
AesGcmTest.php
163.76 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
ByteArrayTest.php
4 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
GmacTest.php
524 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
KeyTest.php
1.02 KB
05/19/2025 10:07:21 AM
rw-r--r--
Editing: GmacTest.php
Close
<?php namespace Aws\Test\Crypto\Polyfill; use Aws\Crypto\Polyfill\Gmac; use Aws\Crypto\Polyfill\Key; use PHPUnit\Framework\TestCase; /** * Class GmacTest * @covers Aws\Test\Crypto\Polyfill */ class GmacTest extends TestCase { public function testConstructor() { $key = new Key(str_repeat("\xff", 32)); $hash = new Gmac( $key, str_repeat("\x00", 15) . "\x01", 256 ); $this->assertInstanceOf(Gmac::class, $hash); } }