Blake2Sharp.CompressionCodeGen.Program.RotateRight C# (CSharp) 메소드

RotateRight() 정적인 개인적인 메소드

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