zb3

Results 75 comments of zb3

I've actually implemented this! Games can be saved to files, and starting positions can also be copied as a string you can copy/paste. But since this repository is no longer...

I've actually implemented this! Games can be saved to files, and starting positions can also be copied as a string you can copy/paste. But since this repository is no longer...

Since the inputType of the AESEncrypt operation is set to string (unlike ToHex which has inputType set to ArrayBuffer), there's no conversion performed using input-dependent encoding, hence it appears to...

This goes even further.. I see the "Loading from URL" test sometimes fails also because the `setInput` method called when loading URI params in the `App` class uses `silent: true`,...

Also since the `debounce` was introduced for updates, the `autoBakePause` variable inside `loadURIParams` no longer works, as the timeout is queued and by the time it executes `autoBakePause` is already...

> Under what circumstances would the fileLoaded method trigger at the same time as the loadURIParams method? @n1474335 The problem is that `fileLoaded` will cause a method to be called...

IOW, silent equal to false inhibits emitting statechange after 20ms, so it's not equal to inhibiting emitting statechange now

@dccutrig, hmm, why would it? Could you name an example operation which would magically assume the input is hex when it's a valid hex?

Seems like you want little-endian counters in AES CTR.. I see CyberChef uses node-forge which doesn't offer this feature so it's not simply a matter of passing different options

It seems an option like "CTR LE" would not even be enough since for Little Endian counters you also need to know the counter size which can vary (64 bit...