• Модуль: security
  • Путь к файлу: ~/bitrix/modules/security/lib/mfa/otp.php
  • Класс: BitrixSecurityMfaOtp
  • Вызов: Otp::__construct
public function __construct($algorithm = null)
{
	if ($algorithm === null)
	{
		$this->setType(static::getDefaultType());
	}
	else
	{
		$this->algorithmClass = $algorithm;
	}
}