• Модуль: ldap
  • Путь к файлу: ~/bitrix/modules/ldap/lib/Internal/Security/Encryption.php
  • Класс: BitrixLdapInternalSecurityEncryption
  • Вызов: Encryption::byteXor
static function byteXor($a, $b, $l)
{
	$c = '';
	for ($i = 0; $i < $l; $i++)
	{
		$c .= $a[$i] ^ $b[$i];
	}
	return $c;
}