BITAND Function in Hve

I am doing migration from Oracle to BigData using Hive process.
I have a scenario to convert BITAND to Hive but hive did not support BITAND can i know who to over come this function…

Example :-
Oracle Stmt


select
DECODE(BITAND(NVL(S.PRIVILEGE,0), 96), 0, 0, 1) SITE_ADMIN
from
public s

Hive Stmt


thanks in Advance.