Iyzipay\IyzipayResource::prepareAuthorizationString PHP Method

prepareAuthorizationString() protected static method

protected static prepareAuthorizationString ( Request $request, Options $options, $rnd )
$request Request
$options Options
    protected static function prepareAuthorizationString(Request $request, Options $options, $rnd)
    {
        $hash = HashGenerator::generateHash($options->getApiKey(), $options->getSecretKey(), $rnd, $request);
        return vsprintf("IYZWS %s:%s", array($options->getApiKey(), $hash));
    }