%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/management/vendor/namshi/jose/tests/Namshi/JOSE/Test/Signer/OpenSSL/
Upload File :
Create Path :
Current File : /var/www/html/management/vendor/namshi/jose/tests/Namshi/JOSE/Test/Signer/OpenSSL/ES512Test.php

<?php

namespace Namshi\JOSE\Test\OpenSSL\Signer;

use Namshi\JOSE\Signer\OpenSSL\ES512;
use Namshi\JOSE\Test\Signer\SecLib\SecLibTestCase;

class ES512Test extends SecLibTestCase
{
    public function setup()
    {
        parent::setup();
        // https://github.com/sebastianbergmann/phpunit/issues/1356
        if (defined('HHVM_VERSION')) {
            $this->markTestSkipped();
        }
        $this->privateKey = openssl_pkey_get_private(SSL_KEYS_PATH.'private.es512.key');
        $this->public = openssl_pkey_get_public(SSL_KEYS_PATH.'public.es512.key');
        $this->signer = new ES512();
    }

    public function testVerificationWorksProperly()
    {
        $encrypted = $this->signer->sign('aaa', $this->privateKey);
        $this->assertInternalType('bool', $this->signer->verify($this->public, $encrypted, 'aaa'));
        $this->assertTrue($this->signer->verify($this->public, $encrypted, 'aaa'));
    }

    public function testSigningWorksProperly()
    {
        $this->assertInternalType('string', $this->signer->sign('aaa', $this->privateKey));
    }
}

Zerion Mini Shell 1.0