pixelfed/app/Util/HTTPSignatures/KeyStoreInterface.php
2018-11-18 20:33:10 -07:00

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);
}