pointbiz

Results 58 comments of pointbiz

Paper wallets are still a valid way to store your Bitcoin. Yes, there are pros and cons but that article is full of bias and inaccuracies. I think mnemonic seeds...

Yes. The instructions above from chris are still valid. You need to have a single quote and semi-colon at the end of the base64 data. I believe it should still...

Would adding bip38 to the bulk wallet tab solve this? See this issue: https://github.com/pointbiz/bitaddress.org/issues/26

Math.random is always used to fill the seed pool with 256 bytes then if no mouse movements have occurred the current time is added to the pool once. https://github.com/pointbiz/bitaddress.org/blob/master/src/securerandom.js#L119-L123 I...

There is additional entropy here: https://github.com/pointbiz/bitaddress.org/blob/master/src/securerandom.js#L125-L128

window.crypto.getRandomValues will be added so those without mouse movement entropy will fair better than with Math.random Perhaps more entropy can be gathered using techniques used on Panopticlick https://panopticlick.eff.org How can...

I would like some feedback on if this commit could resolve the fallback issue? https://github.com/pointbiz/bitaddress.org/commit/db6d3e9acc04bb4f36aa0bc5d9a77038e40fd028 I used all the easy techniques from Panopticlick to gather entropy. I made comments on...

@weissjeffm please take a look at v2.7.6 I think it may solve this issue. Now you can use keyboard or mouse input and it will not generate until you are...

I believe this commit resolves this issue of entropy fallback: https://github.com/pointbiz/bitaddress.org/commit/3d135f7ea6ddaeb273f3241c7a1d27b1eaf0043f Only keystrokes in the textbox are used. I use the timing between keystrokes as well. Thank you canton for...