D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
league
/
oauth2-server
/
src
/
Filename :
CryptKeyInterface.php
back
Copy
<?php declare (strict_types=1); namespace PleskGrafana\League\OAuth2\Server; interface CryptKeyInterface { /** * Retrieve key path. */ public function getKeyPath() : string; /** * Retrieve key pass phrase. */ public function getPassPhrase() : ?string; /** * Get key contents * * @return string Key contents */ public function getKeyContents() : string; }