Öncelikle, sizin machine.config açın ve bir MachineKey girişi ekleyin. Aspnet 2.0 için bir MachineKey jeneratör rasgele oluşturulmuş olanlara göre çözme anahtarı ve doğrulama anahtarını ayarlayın.
Be sure to use the default's, ie. AES and SHA1.
Now that you have the AES decrypt key, store it somewhere because you are going to need it on the php side. 
In your dot net app, go into the web.config and get the forms auth cookie name, usually something like .ASPXAUTH
Şimdi PHP tarafına gidin. Download ve AES şifreleme kütüphanesi kurmak, bu gibi, http://phpseclib.sourceforge.net/documentation/
Sonra PHP böyle bir şey (bu phpsec lib kullanır) yapabilirsiniz:
set_include_path(get_include_path() . PATH_SEPARATOR . 'phpseclib');
include('Crypt/AES.php');
$authCookie = $_COOKIE['_ASPXAUTH'];
echo $authCookie;
$aes = new Crypt_AES();
$aes->setKey('BCDCBE123654F3E365C24E0498346EB95226A307857B9BDE8EBA6198ACF7F03C');
echo $aes->decrypt($authCookie);
Şimdi ne gelen biter İlk pm + SHA1 karma + auth bilet bir bayt temsil olacak. Bunu okunabilir hale getirmek için bir dizeye tefrika bayt dönüştürmek gerekir. Başka birisi bu son aşamada Iluminate miyim?