-
There have been a number of issues surrounding the problem of asynchronous (really just impure generally) actions. But I think the variety of things to be done by these actions are actually relativel…
-
The current way of generating passwords is insecure. All passwords that have been generated with QtPass in the past must be regenerated and changed.
Here is the current password generation function…
zx2c4 updated
6 years ago
-
**EDIT 26/11/2018**:
* **Am I affected?**:
If you are using anything crypto-currency related, then maybe. As discovered by @maths22, the target seems to have been identified as copay related libr…
-
I'm trying to make a login success/error flow but my main concern is where I can put this logic.
Currently I'm using `actions -> reducer (switch case with action calling API) -> success/error on res…
5h1rU updated
6 years ago
-
If anyone is interested, I have uploaded a first version for an implemenation of Seirawan chess in Stockfish: https://github.com/ianfab/Seirawan-Stockfish. ~~Only the rules are implemented without any…
-
Hi -
I'm just starting out, trying to use Elm on Windows 7 64-bit, Haskell Platform 2012.4.0.0. I have not been able to get Elm running. I have tried two different approaches ("compile.bat", and "cab…
-
This thread is for feedback on the full 2 November working draft. Overarching feedback on the draft can be made here, and complete responses to the draft in .doc format can also be uploaded.
*Upda…
-
"Custom entropy" is not a randomization seed (but maybe should be), it's the actual seed, so output wallet is always same for same "Custom entropy", this means if someone uses "abcd" as custom entropy…
-
**Update again:**
```rust
pub trait SeedRestriction: private::Sealed + Default + AsMut {}
pub trait SeedableRng: Sized {
type Seed: SeedRestriction;
fn from_seed(seed: Self::Seed) -> …
-
Hi.
You used mt_rand to generate TOTP secret, but it isn't cryptographically secure generator and secret can be predicted by 3rd parties. You should use random_int, random_bytes or openssl_random_pse…