somesocks
somesocks
@agconti I was working on something similar today, and I got it to work. A few ideas that might help: - You might try adding `--verbose` when you restart gpg-agent,...
Yeahhh, I'm afraid I am 100% booked, no free time to implement it. Maybe in a few months?
Yep, there sure are! Public-key cryptosystems come in right after CSPRNGs and big-integer arithmetic. If you have any more specific requests, open a separate issue, and I'll put them in...
I'm afraid I'm out of free time at the moment, but I've contacted philanc to see if he'd be willing to port his work to this project. Barring that, if...
Hi @nodecentral, At a glance your usage looks correct, but I think you may have a small error in your test code, it looks like `testVectors` should be an array...
To build a working block cipher you need to know 6 things: - the block cipher (in your case, AES 128) - the mode of operation (in your case, CBC...
@nodecentral I took a look through the forum post you linked and, and it seems like there's a lot of confusion in general about how this auth exchange actually works....
Here's how I'd try to complete your code. I haven't tested it at all, so there may be some bugs in here: ``` local Array = require("lockbox.util.array"); local Stream =...
Hi yanming3, Could you provide more information? The lua code you're using to encrypt, a test input, and the expected output?
@evgenykor I don't know anything about testing frameworks for Lua, is busted the preferred standard for testing today? I think its fine to switch frameworks if its a good one,...