[DiscordArchive] for key mapping tables?
[DiscordArchive] for key mapping tables?
Archived author: furl • Posted: 2018-07-13T06:07:50.174000+00:00
Original source
for key mapping tables?
Archived author: Quantam • Posted: 2018-07-13T06:08:03.268000+00:00
Original source
Ladik found something almost identical to that but added a second parameter value before modulo
Archived author: Quantam • Posted: 2018-07-13T06:08:16.207000+00:00
Original source
For something different
Archived author: furl • Posted: 2018-07-13T06:08:46.315000+00:00
Original source
Have a link? Not sure what you're talking about
Archived author: Quantam • Posted: 2018-07-13T06:09:23.448000+00:00
Original source
https://wowdev.wiki/CASC#.IDX_Journals
[Embed: CASC]
https://wowdev.wiki/CASC
Archived author: furl • Posted: 2018-07-13T06:12:26.980000+00:00
Original source
Ah okay. Yeah it looks like the function takes a variable length argument now instead of just xoring the first 8 bytes together
Archived author: furl • Posted: 2018-07-13T06:14:13.007000+00:00
Original source
I mean I get a feeling that's going to be 8 through the end of time because reindexing everyones' installs seems idiotic
Archived author: furl • Posted: 2018-07-13T06:16:02.228000+00:00
Original source
Oh, there's another thing different than that huh
Archived author: furl • Posted: 2018-07-13T06:22:12.312000+00:00
Original source
So that's just like ``` uint8_t cascGetBucketIndex(const uint8_t k[16], uint8_t shift = 0) {
uint8_t i = k[0] ^ k[1] ^ k[2] ^ k[3] ^ k[4] ^ k[5] ^ k[6] ^ k[7] ^ k[8];
i = (i & 0xf) ^ (i >> 4);
return (i + shift) & 0xf;
}```
Archived author: furl • Posted: 2018-07-13T06:22:20.993000+00:00
Original source
but also always zero from what I can see