oauth2-server/tests/Stubs/CryptTraitStub.php

28 lines
580 B
PHP
Raw Normal View History

2016-03-17 21:18:28 +01:00
<?php
namespace LeagueTests\Stubs;
2016-03-28 16:42:34 +02:00
use League\OAuth2\Server\CryptKey;
2016-03-17 21:18:28 +01:00
use League\OAuth2\Server\CryptTrait;
class CryptTraitStub
{
use CryptTrait;
public function __construct()
{
2016-03-28 16:42:34 +02:00
$this->setPrivateKey(new CryptKey('file://' . __DIR__ . '/private.key'));
$this->setPublicKey(new CryptKey('file://' . __DIR__ . '/public.key'));
2016-03-17 21:18:28 +01:00
}
public function doEncrypt($unencryptedData)
{
return $this->encrypt($unencryptedData);
}
public function doDecrypt($encryptedData)
{
return $this->decrypt($encryptedData);
}
}