We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb47ae9 commit c8944b0Copy full SHA for c8944b0
1 file changed
src/Factory/ConfigFactory.php
@@ -2,7 +2,7 @@
2
3
namespace Pdsinterop\Solid\Auth\Factory;
4
5
-use Lcobucci\JWT\Signer\Key;
+use Lcobucci\JWT\Signer\Key\InMemory;
6
use League\OAuth2\Server\CryptKey;
7
use Pdsinterop\Solid\Auth\Config;
8
use Pdsinterop\Solid\Auth\Enum\OAuth2\GrantType;
@@ -53,7 +53,7 @@ final public function create() : Config
53
54
$keys = new Config\Keys(
55
new CryptKey($privateKey),
56
- new Key($publicKey),
+ InMemory::plainText($publicKey),
57
$encryptionKey
58
);
59
0 commit comments