Greg Szabo

Results 31 comments of Greg Szabo

Here's how I did it: Add to Gemfile: ``` gem "jekyll-remote-theme", "~> 0.4.2" ``` Replace `theme` with `remote_theme` in _config.yml: ``` remote_theme: "CloudCannon/base-jekyll-template" ``` Copy these files from the source...

(edit:) I should've started with this: thanks for your contribution, I'm sure that it will help a lot of people struggling with the problem. One of the reasons why this...

I would use this event to break out `gm` from under IBC so it can start becoming its own tool.

The Osmosis example uses Python3 which I think is mostly unnecessary. (Except for the huge, colored OSMOSIS banner. That's mandatory.) But that's just a minor note. The two bigger questions...

I ran into the same issue and it was AES-NI. (The Core2Duo I was using doesn't support the AES instruction set.) Disabling it resolved this issue. (I had others, but...

I think this will only be beneficial if there is some documentation on what the design pattern means. (At least a link of a blog post of some developer somewhere.)...

Current repos where this would be interesting is `gaia`, `ethermint` and `basecoin`. So, what you're saying is that you have no problem for an automated system (Jenkins in the current...

Hi @qpernil , thanks for your feedback on the code. At long last, I added EVP_DecryptFinal to the decryption. For AES-CCM it doesn't really have any benefit, as the OpenSSL...

Hi @qpernil , I've run into another issue to fully recreate a `yubihsm-wrap`-compatible output. The `yubihsm-wrap` input is a PEM-encoded private key with some OID prefix, which is fine. But...

Thanks, Tony, that's what I derived too. I'll have to find an Ed25519 library that can use this "expanded private key" as input. @qpernil it seems that with the above...