관리-도구
편집 파일: SecretKeyStore.php
<?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); }