public function OAuth2Storage::getPublicKey in OAuth2 Server 2.0.x
Same name and namespace in other branches
- 8 src/OAuth2Storage.php \Drupal\oauth2_server\OAuth2Storage::getPublicKey()
Get public key.
Parameters
string|null $client_id: The client id string.
Return value
string The public key string.
File
- src/
OAuth2Storage.php, line 951
Class
- OAuth2Storage
- Provides Drupal OAuth2 storage for the library.
Namespace
Drupal\oauth2_serverCode
public function getPublicKey($client_id = NULL) {
// The library allows for per-client keys. The module uses global keys that
// are regenerated every day, following Google's example.
$keys = Utility::getKeys();
return $keys['public_key'];
}