mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 16:44:50 +00:00
16 lines
238 B
PHP
Executable file
16 lines
238 B
PHP
Executable file
<?php
|
|
|
|
namespace App\Util\HttpSignatures;
|
|
|
|
interface KeyStoreInterface
|
|
{
|
|
/**
|
|
* return the secret for the specified $keyId.
|
|
*
|
|
* @param string $keyId
|
|
*
|
|
* @return Key
|
|
*/
|
|
public function fetch($keyId);
|
|
}
|