Robert Knight
Robert Knight
Assuming you are using mainstream (eg. Intel) hardware, my understanding is that SIMD does not give you a 256bit (or 128 or 512 bit for that matter) word size, but...
I had similar confusion and after reading through parts of the code and issues here wrote a [blog post about git-crypt](https://robertknight.me.uk/posts/git-crypt-intro/) which explains the basics as I understand them, mostly...
Hi @gaku - Thanks for investigating this. I'm happy to accept patches for this repository but most of the work has been moved to https://github.com/robertknight/passcards , which is a combined...
Unfortunately the tests are currently failing. See https://travis-ci.org/robertknight/1pass/builds/101538086
Thanks for taking a look @gaku . If it is a problem on the master branch then I'd really like to get that fixed first before merging any new changes....
> I don't know why I should call wrapper.update() here. Enzyme effectively takes a snapshot of your UI after the initial `mount` and when you call various Enzyme methods (eg....
This is partially addressed in c1b639e7 which solves the problem for sites where the login form is hosted on the same origin as the main document. Solving this for sites...
Would also be worth thinking about whether we could integrate SSH key storage into passcards as well. Need to look around and see what existing solutions people are using for...
Recent versions of Chrome and Firefox allow the system to programatically invoke `document.execCommand('copy')` in response to a user gesture. This would enabling tapping the Copy button to work. This will...
Copying to the clipboard has been re-implemented to use `document.execCommand('copy')` which means that at least the Copy button works now.