OpenRA.FileFormats.Blowfish.Round C# (CSharp) Méthode

Round() private méthode

private Round ( uint &a, uint b, int n ) : void
a uint
b uint
n int
Résultat void
        void Round(ref uint a, uint b, int n)
        {
            a ^= ConvertBFtoF(b) ^ lookupMfromP[n];
        }