Pimcore\Tool\Authentication::tokenDecrypt PHP 메소드

tokenDecrypt() 공개 정적인 메소드

public static tokenDecrypt ( $passwordHash, $token ) : array
$passwordHash
$token
리턴 array
    public static function tokenDecrypt($passwordHash, $token)
    {
        $decrypted = Crypto::decryptWithPassword($token, $passwordHash);
        return explode("|", $decrypted);
    }