⚠️ WARNING: This post contains some terrible advice, and is preserved here only for historical reasons.
Keybase is still not publicly available, but you can ask me or anyone on Keybase for an invite.
After you create the account, you’ll have an option to either generate the key via the online interface or just add your already existing key. If you choose the former make sure to add at least one of the emails you have confirmed on your Github account. It will save you time later.
The more of your online identities you add the more trustworthy your profile becomes. I suggest adding as many as possible, but you can also add them later and/or via the app or terminal client.
Tracking people makes their profiles more trustworthy, by providing an auditable authenticity proof of their identity. To understand more how it works, head here.
“But whom should I track?”, you might ask puzzled. And if you do, scroll down to the handy list that can get you started.
Keybase really shines only when you also utilize its command line interface. GUI app is still in works.
# OSX
$ brew install keybase
# 64-bit Debian:
$ curl -O https://dist.keybase.io/linux/deb/keybase-latest-amd64.deb && \
sudo dpkg -i keybase-latest-amd64.deb
# Other
## All contributions welcome ;)
$ keybase login
Follow the steps and make sure to save your paper wallet somewhere safe.
To make any of it possible you need your Keybase keys locally.
To import your public key just run:
# replace with your username where appropriate
$ curl https://keybase.io/<your-username>/key.asc | gpg --import
Now it’s time for the private key. Open your Keybase profile, and…
Confirm password, copy everything from the popup and save it as ex. keybase-private.key
.
Then:
$ gpg --allow-secret-key-import --import keybase-private.key
Once you’re all set with your Keybase stuff, you need to teach your git how to crypto.
Go to https://keybase.io/<your-username>
and copy 8 last characters of your key fingerprint from there.
Alternatively, run gpg --list-keys
, and locate your keybase key on the list there, ex:
$ gpg --list-keys
[…]
pub 4096R/A809CB18 2014-05-09
uid [ultimate] Damian Mee (https://meedamian.com) <mee.damian@gmail.com>
uid [ultimate] keybase.io/meedamian <meedamian@keybase.io>
sub 2048R/6560B337 2014-05-09 [expires: 2022-05-07]
sub 2048R/15276EF8 2014-05-09 [expires: 2022-05-07]
[…]
From there, copy your key ID (in the example above, it’s A809CB18
).
If your key, for any reason¹, doesn’t have any overlapping email addresses with your Github account, this step is necessary.
¹ - Ex. you forgot to add it during key generation, or you have an old key that has <your-username>@keybase.io
as an email
First, run:
$ gpg --edit-key <your-username>@keybase.io
You’ll be presented with an interactive prompt, there:
adduid
followed by enter,o
(as in “okay”), followed by enter,trust
, select 5
and confirm with y
to grant ultimate trust to your identity,save
and confirm with enter.Once you’re done, re-sync your key with Keybase, with:
# for newer keybase cli
$ keybase pgp select --multi
# for older keybase cli
$ keybase push --update
You might be asked to choose the key to be synced. Make sure to select the Keybase one.
When it finishes you might want to wait a short while, before proceeding to the next step.
Copy everything from https://keybase.io/<your-username>/key.asc
and paste it as a new “GPG key” in here.
# Use `git commit -S` by default for all commits
$ git config --global commit.gpgsign true
# Set default key
$ git config --global user.signingkey <key-id>
All you commit now should be automagically signed with your Keybase key. If everything went well, you should see a “Verified” badge by all your new commits on Github.
name | description |
---|---|
koush | Brilliant Android engineer, who blocked his mom’s number |
chris & max | They’re to blame for Keybase and OkCupid |
vitalik | The founder of Ethereum |
moot | All 4chan posts are by him |
codinghorror | Has a cool blog and founded Stack Exchange |
aikordek | Bitcoin & Startup girl |
mpj | Shares great tweets and videos |
authy | The 2FA app you should be using instead of Google Authenticator |
robpike | Co-creator of Go |
sindresorhus | The guy who wrote all npm packages |
jakewharton | Cool Android dev |
matthewdgreen | He knows a lot of security thingies |
oleganza | Shares good UX and security content |
meedamian | The original creator of this list |
This one is quite off-topic, but I think it’s amazing and worth including here. Keybase is working on a seamless, fully encrypted and synced /keybase/{public,private}/
folder. Make sure to check it out. If you need an invite hit me up.