Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
heyjorgedev committed Jul 16, 2024
1 parent 3f2c6f8 commit a74aa54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Receiver.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ public function __construct(protected ClockInterface $clock, array $signingKeys)
$keys = [];
foreach ($signingKeys as $signingKey) {
$keys[] = JWKFactory::createFromSecret(
$signingKey, // The shared secret
[ // Optional additional members
$signingKey,
[
'alg' => 'HS256',
'use' => 'sig',
]
],
);
}

Expand Down

0 comments on commit a74aa54

Please sign in to comment.