summary refs log tree commit diff
path: root/crypto/src/util/Integers.cs
blob: ccbf872c49d99c2b0355e70531684bf3d384e44e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Org.BouncyCastle.Utilities
{
    public abstract class Integers
    {
        public static int RotateLeft(int i, int distance)
        {
            return (i << distance) ^ (int)((uint)i >> -distance);
        }

        public static int RotateRight(int i, int distance)
        {
            return (int)((uint)i >> distance) ^ (i << -distance);
        }
    }
}