D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
Sdk
/
Webhooks
/
Filename :
SecretKeyStore.php
back
Copy
<?php namespace App\Libs\Sdk\Webhooks; /** * Class SecretKeyStore * A store of secret keys. Implementations could store secret keys in a database, on disk, etc. * * @package OnlinePayments\Sdk\Webhooks */ interface SecretKeyStore { /** * @param string $keyId * @return string The secret key for the given key id. * @throws SecretKeyNotAvailableException If the secret key for the given key id is not available. */ public function getSecretKey($keyId); }