0

有没有办法以byte[]特定的数量对整体进行 Ror?我已经做了一些研究并找到了 Rol a 的解决方案byte[]

public static byte[] ROL_ByteArray(byte[] arr, int nShift)
{
    //Performs bitwise circular shift of 'arr' by 'nShift' bits to the left
    //RETURN:
    //      = Result
    byte[] resArr = new byte[arr.Length];

    if(arr.Length > 0)
    {
        int nByteShift = nShift / (sizeof(byte) * 8);   //Adjusted after @dasblinkenlight's correction
        int nBitShift = nShift % (sizeof(byte) * 8);

        if (nByteShift >= arr.Length)
            nByteShift %= arr.Length;

        int s = arr.Length - 1;
        int d = s - nByteShift;

        for (int nCnt = 0; nCnt < arr.Length; nCnt++, d--, s--)
        {
            while (d < 0)
                d += arr.Length;
            while (s < 0)
                s += arr.Length;

            byte byteS = arr[s];

            resArr[d] |= (byte)(byteS << nBitShift);
            resArr[d > 0 ? d - 1 : resArr.Length - 1] |= (byte)(byteS >> (sizeof(byte) * 8 - nBitShift));


        }
    }

    return resArr;
}

可以在此处找到此代码的作者:C# 中是否有一个函数可以为字节数组执行循环移位?

知道我怎么能做同样的事情,但在 a 上执行 Ror 操作而不是 Rol 操作byte[]

4

1 回答 1

1
static byte[] ROR_ByteArray(byte[] arr, int nShift)
{
  return ROL_ByteArray(arr, arr.Length*8-nShift);
}
于 2015-05-25T20:17:11.910 回答