G
Guest
Does anyone know how to use the _rotl function or if there an equivalent in C#
Tanks for your hel
Tanks for your hel
Gilles said:Does anyone know how to use the _rotl function or if there
an equivalent in C# ?
What I would like is that the shifted bit goes to the right of the byte.
Gilles said:The shift operation replaces the shifted bits by 0.
What I would like is that the shifted bit goes to the right of the byte.
Any idea ?
{
return (original << bits) | (original >> (32-bits));
}