[DiscordArchive] Does it fill DosChallenge[0] to DosChallenge[3] with _encryptSeed and fill DosChallenge[4] to DosCha
[DiscordArchive] Does it fill DosChallenge[0] to DosChallenge[3] with _encryptSeed and fill DosChallenge[4] to DosCha
Archived author: Peacy • Posted: 2021-12-24T18:55:55.530000+00:00
Original source
So if it puts all of _encryptSeed into first 4 and all of _decryptSeed into last 4, what is the point of AsByteArray(16).get()?
Archived author: Nix • Posted: 2021-12-24T18:56:26.187000+00:00
Original source
Because encrypt and decrypt seed probably isn't in a format that can just be copied without converting it first
Archived author: tester • Posted: 2021-12-24T18:56:31.734000+00:00
Original source
_encrypt is a single number, it gets broken into bytes to be placed in the array
Archived author: tester • Posted: 2021-12-24T18:56:58.248000+00:00
Original source
atleast i assume it is supposed to be similar to .rand(max)
Archived author: Nix • Posted: 2021-12-24T18:57:10.422000+00:00
Original source
Don't think so
Archived author: Nix • Posted: 2021-12-24T18:57:21.111000+00:00
Original source
Pretty sure it's something along the lines of a bigNum
Archived author: Peacy • Posted: 2021-12-24T18:57:37.074000+00:00
Original source
Why I ask is because previously _encryptSeed and _decryptSeed were considered BigNumbers but now they are considered:
```
std::array<uint8, 16> _encryptSeed;
std::array<uint8, 16> _decryptSeed;
```
Archived author: Peacy • Posted: 2021-12-24T18:57:56.158000+00:00
Original source
So i'm trying to figure out how I can change the code to make it have the same functionality as before.