mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
73eac83afe
Made existence of 'alg' optional when JWK array set so we instead infer it as RSA256 if not existing. Fixes #3206
120 lines
3.7 KiB
PHP
120 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Auth\Access\Oidc;
|
|
|
|
use phpseclib3\Crypt\Common\PublicKey;
|
|
use phpseclib3\Crypt\PublicKeyLoader;
|
|
use phpseclib3\Crypt\RSA;
|
|
use phpseclib3\Math\BigInteger;
|
|
|
|
class OidcJwtSigningKey
|
|
{
|
|
/**
|
|
* @var PublicKey
|
|
*/
|
|
protected $key;
|
|
|
|
/**
|
|
* Can be created either from a JWK parameter array or local file path to load a certificate from.
|
|
* Examples:
|
|
* 'file:///var/www/cert.pem'
|
|
* ['kty' => 'RSA', 'alg' => 'RS256', 'n' => 'abc123...'].
|
|
*
|
|
* @param array|string $jwkOrKeyPath
|
|
*
|
|
* @throws OidcInvalidKeyException
|
|
*/
|
|
public function __construct($jwkOrKeyPath)
|
|
{
|
|
if (is_array($jwkOrKeyPath)) {
|
|
$this->loadFromJwkArray($jwkOrKeyPath);
|
|
} elseif (is_string($jwkOrKeyPath) && strpos($jwkOrKeyPath, 'file://') === 0) {
|
|
$this->loadFromPath($jwkOrKeyPath);
|
|
} else {
|
|
throw new OidcInvalidKeyException('Unexpected type of key value provided');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws OidcInvalidKeyException
|
|
*/
|
|
protected function loadFromPath(string $path)
|
|
{
|
|
try {
|
|
$key = PublicKeyLoader::load(
|
|
file_get_contents($path)
|
|
);
|
|
} catch (\Exception $exception) {
|
|
throw new OidcInvalidKeyException("Failed to load key from file path with error: {$exception->getMessage()}");
|
|
}
|
|
|
|
if (!$key instanceof RSA) {
|
|
throw new OidcInvalidKeyException('Key loaded from file path is not an RSA key as expected');
|
|
}
|
|
|
|
$this->key = $key->withPadding(RSA::SIGNATURE_PKCS1);
|
|
}
|
|
|
|
/**
|
|
* @throws OidcInvalidKeyException
|
|
*/
|
|
protected function loadFromJwkArray(array $jwk)
|
|
{
|
|
// 'alg' is optional for a JWK, but we will still attempt to validate if
|
|
// it exists otherwise presume it will be compatible.
|
|
$alg = $jwk['alg'] ?? null;
|
|
if ($jwk['kty'] !== 'RSA' || !(is_null($alg) || $alg === 'RS256')) {
|
|
throw new OidcInvalidKeyException("Only RS256 keys are currently supported. Found key using {$alg}");
|
|
}
|
|
|
|
if (empty($jwk['use'])) {
|
|
throw new OidcInvalidKeyException('A "use" parameter on the provided key is expected');
|
|
}
|
|
|
|
if ($jwk['use'] !== 'sig') {
|
|
throw new OidcInvalidKeyException("Only signature keys are currently supported. Found key for use {$jwk['use']}");
|
|
}
|
|
|
|
if (empty($jwk['e'])) {
|
|
throw new OidcInvalidKeyException('An "e" parameter on the provided key is expected');
|
|
}
|
|
|
|
if (empty($jwk['n'])) {
|
|
throw new OidcInvalidKeyException('A "n" parameter on the provided key is expected');
|
|
}
|
|
|
|
$n = strtr($jwk['n'] ?? '', '-_', '+/');
|
|
|
|
try {
|
|
$key = PublicKeyLoader::load([
|
|
'e' => new BigInteger(base64_decode($jwk['e']), 256),
|
|
'n' => new BigInteger(base64_decode($n), 256),
|
|
]);
|
|
} catch (\Exception $exception) {
|
|
throw new OidcInvalidKeyException("Failed to load key from JWK parameters with error: {$exception->getMessage()}");
|
|
}
|
|
|
|
if (!$key instanceof RSA) {
|
|
throw new OidcInvalidKeyException('Key loaded from file path is not an RSA key as expected');
|
|
}
|
|
|
|
$this->key = $key->withPadding(RSA::SIGNATURE_PKCS1);
|
|
}
|
|
|
|
/**
|
|
* Use this key to sign the given content and return the signature.
|
|
*/
|
|
public function verify(string $content, string $signature): bool
|
|
{
|
|
return $this->key->verify($content, $signature);
|
|
}
|
|
|
|
/**
|
|
* Convert the key to a PEM encoded key string.
|
|
*/
|
|
public function toPem(): string
|
|
{
|
|
return $this->key->toString('PKCS8');
|
|
}
|
|
}
|