Blake2Sharp.CompressionCodeGen.Program.RotateRight C# (CSharp) Method

RotateRight() static private method

static private RotateRight ( string name, int offset ) : string
name string
offset int
return string
        static string RotateRight(string name, int offset)
        {
            return "((" + name + " >>" + offset + ")|(" + name + " << (64-" + offset + ")))";
        }