D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api2
/
vendor
/
namshi
/
jose
/
tests
/
Namshi
/
JOSE
/
Test
/
Signer
/
SecLib
/
Filename :
RS256TEST.php
back
Copy
<?php namespace Namshi\JOSE\Test\Signer\SecLib; use Namshi\JOSE\Signer\SecLib\RS256; class RS256TEST extends SecLibTestCase { public function setup() { parent::setup(); $this->privateKey = file_get_contents(SSL_KEYS_PATH.'private.key'); $this->public = file_get_contents(SSL_KEYS_PATH.'public.key'); $this->password = 'tests'; $this->signer = new RS256(); } public function testVerificationWorksProperly() { $encrypted = $this->signer->sign('aaa', $this->privateKey, $this->password); $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, $this->password)); } }