Results 204 comments of Maxwell Krohn

Thanks. Cc @cjb and @chrisnojima

Can you send another `keybase log send`? Thanks

Agreed almost certainly the same process, since the memory stats all line up. Also note slack showing the same thing.

It's a mistake on your part, but @patrickxb can clarify further.

Part of the issue here is that `get_expire_time()` on `Keymaterial` returns `null` if no expire time specified.

A solution is to have the call from `KeyManager::gen` do the `if` check currently in the `Lifespan` class.

Here's the RFC: http://www.ietf.org/rfc/rfc3447.txt And here's the golang thread on the implementation: https://groups.google.com/forum/#!topic/golang-dev/7b2zEVtA_zM

Yes, subkeys are definitely required for ECC keys, since you can't encrypt with ECDSA. We can of course use a better error message, but that's all we could do here.

This should do it: ``` coffeescript @import_from_pgp_message : ({msg, asp, opts}, cb) -> ```

Not ideal, but I got this to work: ``` javascript var kbpgp = require('kbpgp'), fs = require('fs'); fs.readFile('keyFile.gpg', {"encoding" : null}, (err, data) => { msg = { body :...