📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
iyzipay
/
src
/
Iyzipay
📝
HashGenerator.php
← Geri Dön
<?php namespace Iyzipay; class HashGenerator { public static function generateHash($apiKey, $secretKey, $randomString, Request $request) { $hashStr = $apiKey . $randomString . $secretKey . $request->toPKIRequestString(); return base64_encode(sha1($hashStr, true)); } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula