rol ror用C/++怎么表示?
ROL: int rol = 18; int cnt = rol%32; int Result = (eax << rol) | eax >> (32-cnt);
ROR: int ror = 9; int cnt = ror%32; int Result = ((eax >> cnt) | (eax << (32-cnt));(ViperDodge回答)