05-01-2011, 02:09 PM
Добрый день, есть следующий кусок кода:
PHP код:
<?php
String user = new String(decrypted, 64, 32).trim().toLowerCase();
String password = new String(decrypted, 96, 32).trim();
int ncotp = decrypted[0x7c];
ncotp |= decrypted[0x7d] << 8;
ncotp |= decrypted[0x7e] << 16;
ncotp |= decrypted[0x7f] << 24;
//this.EnCryp(user, 50, 11, 1254);
// тут перевернуть строки которые в user и password и отнять 3 последних символа
//log.debug("AuthLogin: " + user1 + " pass: " + password1 + " ncotp: " + ncotp);
AionConnection client = getConnection();
AionAuthResponse response = AccountController.login(user, password, client);
Необходимо текст:
PHP код:
<?php
тут перевернуть строки которые в user и password и отнять 3 последних символа