kgolawski

Results 51 comments of kgolawski

> also it should be `dogechain`, not `dogecoin`. Done 👍

Hey From my quick analysis it should be possible with cutting your data to about 450 bytes. Test script ```py #!/usr/bin/env python3 from base64 import b64decode from hashlib import pbkdf2_hmac...

Another case is unclear error message. ```text 0: at line 1, in Eof: abc ^ 1: at line 1, in str: abc ^ ``` Shouldn't it be something like this?...

Not at all. I just stopped using `convert_error` and casting to `VerboseError`.

In my opinion you should use [key derivation function](https://en.wikipedia.org/wiki/Key_derivation_function). This crypto scheme turns input into fixed-size key (for your usage it turns PIN into 128 bits length AES key). You...

`2.6.0rc1.dev17` should be before `2.6.0rc1` IMHO. Also when you download from any commit before `2.6.0rc1` tag you will get version like `2.5.0.devN`. Checking this random commit - 1302042. ```shell $...

@gpotter2 from my point of view it's your choice, I thought that it's worth to report that issue. You can close this issue if you like to leave it as...

Looks good for me. I hope I will find some time to read your blog post in upcoming week.

Yes, it does. However your CPU must support OpenCL and you must install required drivers.

As you can see it's "OpenCL device type". It requires OpenCL runtime for your processor. It can handle CPU-only setup (machine without GPU) however it requires: 1. CPU which supports...