Anyone know what follow code does?
問題是關於跟隨運營商:&和|和0xFC有C#奇怪的代碼
salt[0] = (byte)((salt[0] & 0xfc) | (saltLen & 0x03));
salt[1] = (byte)((salt[1] & 0xf3) | (saltLen & 0x0c));
salt[2] = (byte)((salt[2] & 0xcf) | (saltLen & 0x30));
salt[3] = (byte)((salt[3] & 0x3f) | (saltLen & 0xc0));
你知道在這些行的正上方有一個註釋來解釋它的作用嗎? – Joey 2010-08-09 01:59:34
究竟是什麼讓你困惑?如果你對代碼或評論感到困惑,你能詳細說明什麼讓你感到困惑嗎? – 2010-08-09 02:01:07
問題是關於跟隨運算符:&和|,和0xfc – ozsenegal 2010-08-09 02:01:36