We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73a1dd0 commit e3a6091Copy full SHA for e3a6091
1 file changed
src/Utils/Jwks.php
@@ -47,7 +47,7 @@ private function createKey(string $certificate, $subject) : array
47
JwkParameter::KEY_TYPE => 'RSA',
48
RsaParameter::PUBLIC_EXPONENT => 'AQAB', // Hard-coded as `Base64Url::encode($keyInfo['rsa']['e'])` tends to be empty...
49
RsaParameter::PUBLIC_MODULUS => Base64Url::encode($subject),
50
- JwkParameter::KEY_OPERATIONS => array("verify")
+ JwkParameter::KEY_OPERATIONS => array("verify"),
51
];
52
}
53
0 commit comments