├── .gitignore ├── .kbignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── SIGNED.md ├── bin └── main.js ├── certs ├── README.md ├── c_to_js.pl ├── node_root_certs.h └── node_root_certs.js ├── hacks ├── versions.iced └── x.fish ├── json └── node_root_certs.json ├── lib ├── basex.js ├── bn.js ├── ca.js ├── chainlink.js ├── checkers.js ├── colors.js ├── command │ ├── all.js │ ├── announce.js │ ├── argparse.js │ ├── base.js │ ├── btc.js │ ├── cert.js │ ├── config.js │ ├── decrypt.js │ ├── decrypt_and_verify.js │ ├── dir.js │ ├── encrypt.js │ ├── help.js │ ├── id.js │ ├── join.js │ ├── keygen.js │ ├── list_signatures.js │ ├── list_tracking.js │ ├── login.js │ ├── logout.js │ ├── proof_base.js │ ├── prove.js │ ├── pull.js │ ├── push.js │ ├── push_and_keygen.js │ ├── reset.js │ ├── revoke.js │ ├── revoke_sig.js │ ├── search.js │ ├── sign.js │ ├── status.js │ ├── switch.js │ ├── track.js │ ├── untrack.js │ ├── update.js │ ├── verify.js │ └── version.js ├── config.js ├── constants.js ├── db.js ├── display.js ├── dve.js ├── env.js ├── err.js ├── file.js ├── fs.js ├── gpg.js ├── hkp_loopback.js ├── keymanager.js ├── keypatch.js ├── keypull.js ├── keyring.js ├── keys.js ├── keyselector.js ├── keyutils.js ├── log.js ├── merkle_client.js ├── package.js ├── prompter.js ├── proxyca.js ├── pw.js ├── queue.js ├── req.js ├── scrapers.js ├── services.js ├── session.js ├── setup.js ├── sigchain.js ├── sigs.js ├── tor.js ├── tracksubsub.js ├── trackwrapper.js ├── user.js ├── util.js └── version.js ├── notes └── refactor.md ├── package.json ├── sql └── schema.sql ├── src ├── attic │ ├── client.iced │ ├── command │ │ ├── daemon.iced │ │ ├── dec.iced │ │ ├── down.iced │ │ ├── enc.iced │ │ ├── init.iced │ │ ├── server.iced │ │ └── up.iced │ ├── crypto.iced │ ├── exit.iced │ ├── launch.iced │ ├── server.iced │ └── tee.iced ├── basex.iced ├── bn.iced ├── ca.iced ├── chainlink.iced ├── checkers.iced ├── colors.iced ├── command │ ├── all.iced │ ├── announce.iced │ ├── argparse.iced │ ├── base.iced │ ├── btc.iced │ ├── cert.iced │ ├── config.iced │ ├── decrypt.iced │ ├── decrypt_and_verify.iced │ ├── dir.iced │ ├── encrypt.iced │ ├── help.iced │ ├── id.iced │ ├── join.iced │ ├── keygen.iced │ ├── list_signatures.iced │ ├── list_tracking.iced │ ├── login.iced │ ├── logout.iced │ ├── proof_base.iced │ ├── prove.iced │ ├── pull.iced │ ├── push.iced │ ├── push_and_keygen.iced │ ├── reset.iced │ ├── revoke.iced │ ├── revoke_sig.iced │ ├── search.iced │ ├── sign.iced │ ├── status.iced │ ├── switch.iced │ ├── track.iced │ ├── untrack.iced │ ├── update.iced │ ├── verify.iced │ └── version.iced ├── config.iced ├── constants.iced ├── db.iced ├── display.iced ├── dve.iced ├── env.iced ├── err.iced ├── file.iced ├── fs.iced ├── gpg.iced ├── hkp_loopback.iced ├── keymanager.iced ├── keypatch.iced ├── keypull.iced ├── keyring.iced ├── keys.iced ├── keyselector.iced ├── keyutils.iced ├── log.iced ├── merkle_client.iced ├── package.iced ├── prompter.iced ├── proxyca.iced ├── pw.iced ├── queue.iced ├── req.iced ├── scrapers.iced ├── services.iced ├── session.iced ├── setup.iced ├── sigchain.iced ├── sigs.iced ├── tor.iced ├── tracksubsub.iced ├── trackwrapper.iced ├── user.iced ├── util.iced └── version.iced └── test ├── conf └── client_test.json.3s ├── config.json.asc ├── files ├── 0_alice.iced ├── 1_bob.iced ├── 20_revoke.iced ├── 2_follow.iced ├── 3_enc_dec.iced ├── 4_gen.iced ├── 5_dir.iced ├── 7_bitcoin.iced ├── 8_multikey.iced ├── 99_cleanup.iced └── gen.iced ├── lib ├── cmd.iced ├── config.iced ├── github.iced ├── twitter.iced └── user.iced └── run.iced /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.kbignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/.kbignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | hacks 3 | rel 4 | certs 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/README.md -------------------------------------------------------------------------------- /SIGNED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/SIGNED.md -------------------------------------------------------------------------------- /bin/main.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require("../lib/command/all").run(); 4 | -------------------------------------------------------------------------------- /certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/certs/README.md -------------------------------------------------------------------------------- /certs/c_to_js.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/certs/c_to_js.pl -------------------------------------------------------------------------------- /certs/node_root_certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/certs/node_root_certs.h -------------------------------------------------------------------------------- /certs/node_root_certs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/certs/node_root_certs.js -------------------------------------------------------------------------------- /hacks/versions.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/hacks/versions.iced -------------------------------------------------------------------------------- /hacks/x.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/hacks/x.fish -------------------------------------------------------------------------------- /json/node_root_certs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/json/node_root_certs.json -------------------------------------------------------------------------------- /lib/basex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/basex.js -------------------------------------------------------------------------------- /lib/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/bn.js -------------------------------------------------------------------------------- /lib/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/ca.js -------------------------------------------------------------------------------- /lib/chainlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/chainlink.js -------------------------------------------------------------------------------- /lib/checkers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/checkers.js -------------------------------------------------------------------------------- /lib/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/colors.js -------------------------------------------------------------------------------- /lib/command/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/all.js -------------------------------------------------------------------------------- /lib/command/announce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/announce.js -------------------------------------------------------------------------------- /lib/command/argparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/argparse.js -------------------------------------------------------------------------------- /lib/command/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/base.js -------------------------------------------------------------------------------- /lib/command/btc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/btc.js -------------------------------------------------------------------------------- /lib/command/cert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/cert.js -------------------------------------------------------------------------------- /lib/command/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/config.js -------------------------------------------------------------------------------- /lib/command/decrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/decrypt.js -------------------------------------------------------------------------------- /lib/command/decrypt_and_verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/decrypt_and_verify.js -------------------------------------------------------------------------------- /lib/command/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/dir.js -------------------------------------------------------------------------------- /lib/command/encrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/encrypt.js -------------------------------------------------------------------------------- /lib/command/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/help.js -------------------------------------------------------------------------------- /lib/command/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/id.js -------------------------------------------------------------------------------- /lib/command/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/join.js -------------------------------------------------------------------------------- /lib/command/keygen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/keygen.js -------------------------------------------------------------------------------- /lib/command/list_signatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/list_signatures.js -------------------------------------------------------------------------------- /lib/command/list_tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/list_tracking.js -------------------------------------------------------------------------------- /lib/command/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/login.js -------------------------------------------------------------------------------- /lib/command/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/logout.js -------------------------------------------------------------------------------- /lib/command/proof_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/proof_base.js -------------------------------------------------------------------------------- /lib/command/prove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/prove.js -------------------------------------------------------------------------------- /lib/command/pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/pull.js -------------------------------------------------------------------------------- /lib/command/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/push.js -------------------------------------------------------------------------------- /lib/command/push_and_keygen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/push_and_keygen.js -------------------------------------------------------------------------------- /lib/command/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/reset.js -------------------------------------------------------------------------------- /lib/command/revoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/revoke.js -------------------------------------------------------------------------------- /lib/command/revoke_sig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/revoke_sig.js -------------------------------------------------------------------------------- /lib/command/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/search.js -------------------------------------------------------------------------------- /lib/command/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/sign.js -------------------------------------------------------------------------------- /lib/command/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/status.js -------------------------------------------------------------------------------- /lib/command/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/switch.js -------------------------------------------------------------------------------- /lib/command/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/track.js -------------------------------------------------------------------------------- /lib/command/untrack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/untrack.js -------------------------------------------------------------------------------- /lib/command/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/update.js -------------------------------------------------------------------------------- /lib/command/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/verify.js -------------------------------------------------------------------------------- /lib/command/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/command/version.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/db.js -------------------------------------------------------------------------------- /lib/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/display.js -------------------------------------------------------------------------------- /lib/dve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/dve.js -------------------------------------------------------------------------------- /lib/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/env.js -------------------------------------------------------------------------------- /lib/err.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/err.js -------------------------------------------------------------------------------- /lib/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/file.js -------------------------------------------------------------------------------- /lib/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/fs.js -------------------------------------------------------------------------------- /lib/gpg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/gpg.js -------------------------------------------------------------------------------- /lib/hkp_loopback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/hkp_loopback.js -------------------------------------------------------------------------------- /lib/keymanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/keymanager.js -------------------------------------------------------------------------------- /lib/keypatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/keypatch.js -------------------------------------------------------------------------------- /lib/keypull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/keypull.js -------------------------------------------------------------------------------- /lib/keyring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/keyring.js -------------------------------------------------------------------------------- /lib/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/keys.js -------------------------------------------------------------------------------- /lib/keyselector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/keyselector.js -------------------------------------------------------------------------------- /lib/keyutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/keyutils.js -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/merkle_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/merkle_client.js -------------------------------------------------------------------------------- /lib/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/package.js -------------------------------------------------------------------------------- /lib/prompter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/prompter.js -------------------------------------------------------------------------------- /lib/proxyca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/proxyca.js -------------------------------------------------------------------------------- /lib/pw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/pw.js -------------------------------------------------------------------------------- /lib/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/queue.js -------------------------------------------------------------------------------- /lib/req.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/req.js -------------------------------------------------------------------------------- /lib/scrapers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/scrapers.js -------------------------------------------------------------------------------- /lib/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/services.js -------------------------------------------------------------------------------- /lib/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/session.js -------------------------------------------------------------------------------- /lib/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/setup.js -------------------------------------------------------------------------------- /lib/sigchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/sigchain.js -------------------------------------------------------------------------------- /lib/sigs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/sigs.js -------------------------------------------------------------------------------- /lib/tor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/tor.js -------------------------------------------------------------------------------- /lib/tracksubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/tracksubsub.js -------------------------------------------------------------------------------- /lib/trackwrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/trackwrapper.js -------------------------------------------------------------------------------- /lib/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/user.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/util.js -------------------------------------------------------------------------------- /lib/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/lib/version.js -------------------------------------------------------------------------------- /notes/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/notes/refactor.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/package.json -------------------------------------------------------------------------------- /sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/sql/schema.sql -------------------------------------------------------------------------------- /src/attic/client.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/client.iced -------------------------------------------------------------------------------- /src/attic/command/daemon.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/command/daemon.iced -------------------------------------------------------------------------------- /src/attic/command/dec.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/command/dec.iced -------------------------------------------------------------------------------- /src/attic/command/down.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/command/down.iced -------------------------------------------------------------------------------- /src/attic/command/enc.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/command/enc.iced -------------------------------------------------------------------------------- /src/attic/command/init.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/command/init.iced -------------------------------------------------------------------------------- /src/attic/command/server.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/command/server.iced -------------------------------------------------------------------------------- /src/attic/command/up.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/command/up.iced -------------------------------------------------------------------------------- /src/attic/crypto.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/crypto.iced -------------------------------------------------------------------------------- /src/attic/exit.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/exit.iced -------------------------------------------------------------------------------- /src/attic/launch.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/launch.iced -------------------------------------------------------------------------------- /src/attic/server.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/server.iced -------------------------------------------------------------------------------- /src/attic/tee.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/attic/tee.iced -------------------------------------------------------------------------------- /src/basex.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/basex.iced -------------------------------------------------------------------------------- /src/bn.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/bn.iced -------------------------------------------------------------------------------- /src/ca.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/ca.iced -------------------------------------------------------------------------------- /src/chainlink.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/chainlink.iced -------------------------------------------------------------------------------- /src/checkers.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/checkers.iced -------------------------------------------------------------------------------- /src/colors.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/colors.iced -------------------------------------------------------------------------------- /src/command/all.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/all.iced -------------------------------------------------------------------------------- /src/command/announce.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/announce.iced -------------------------------------------------------------------------------- /src/command/argparse.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/argparse.iced -------------------------------------------------------------------------------- /src/command/base.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/base.iced -------------------------------------------------------------------------------- /src/command/btc.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/btc.iced -------------------------------------------------------------------------------- /src/command/cert.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/cert.iced -------------------------------------------------------------------------------- /src/command/config.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/config.iced -------------------------------------------------------------------------------- /src/command/decrypt.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/decrypt.iced -------------------------------------------------------------------------------- /src/command/decrypt_and_verify.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/decrypt_and_verify.iced -------------------------------------------------------------------------------- /src/command/dir.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/dir.iced -------------------------------------------------------------------------------- /src/command/encrypt.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/encrypt.iced -------------------------------------------------------------------------------- /src/command/help.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/help.iced -------------------------------------------------------------------------------- /src/command/id.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/id.iced -------------------------------------------------------------------------------- /src/command/join.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/join.iced -------------------------------------------------------------------------------- /src/command/keygen.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/keygen.iced -------------------------------------------------------------------------------- /src/command/list_signatures.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/list_signatures.iced -------------------------------------------------------------------------------- /src/command/list_tracking.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/list_tracking.iced -------------------------------------------------------------------------------- /src/command/login.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/login.iced -------------------------------------------------------------------------------- /src/command/logout.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/logout.iced -------------------------------------------------------------------------------- /src/command/proof_base.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/proof_base.iced -------------------------------------------------------------------------------- /src/command/prove.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/prove.iced -------------------------------------------------------------------------------- /src/command/pull.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/pull.iced -------------------------------------------------------------------------------- /src/command/push.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/push.iced -------------------------------------------------------------------------------- /src/command/push_and_keygen.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/push_and_keygen.iced -------------------------------------------------------------------------------- /src/command/reset.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/reset.iced -------------------------------------------------------------------------------- /src/command/revoke.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/revoke.iced -------------------------------------------------------------------------------- /src/command/revoke_sig.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/revoke_sig.iced -------------------------------------------------------------------------------- /src/command/search.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/search.iced -------------------------------------------------------------------------------- /src/command/sign.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/sign.iced -------------------------------------------------------------------------------- /src/command/status.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/status.iced -------------------------------------------------------------------------------- /src/command/switch.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/switch.iced -------------------------------------------------------------------------------- /src/command/track.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/track.iced -------------------------------------------------------------------------------- /src/command/untrack.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/untrack.iced -------------------------------------------------------------------------------- /src/command/update.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/update.iced -------------------------------------------------------------------------------- /src/command/verify.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/verify.iced -------------------------------------------------------------------------------- /src/command/version.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/command/version.iced -------------------------------------------------------------------------------- /src/config.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/config.iced -------------------------------------------------------------------------------- /src/constants.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/constants.iced -------------------------------------------------------------------------------- /src/db.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/db.iced -------------------------------------------------------------------------------- /src/display.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/display.iced -------------------------------------------------------------------------------- /src/dve.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/dve.iced -------------------------------------------------------------------------------- /src/env.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/env.iced -------------------------------------------------------------------------------- /src/err.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/err.iced -------------------------------------------------------------------------------- /src/file.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/file.iced -------------------------------------------------------------------------------- /src/fs.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/fs.iced -------------------------------------------------------------------------------- /src/gpg.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/gpg.iced -------------------------------------------------------------------------------- /src/hkp_loopback.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/hkp_loopback.iced -------------------------------------------------------------------------------- /src/keymanager.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/keymanager.iced -------------------------------------------------------------------------------- /src/keypatch.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/keypatch.iced -------------------------------------------------------------------------------- /src/keypull.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/keypull.iced -------------------------------------------------------------------------------- /src/keyring.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/keyring.iced -------------------------------------------------------------------------------- /src/keys.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/keys.iced -------------------------------------------------------------------------------- /src/keyselector.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/keyselector.iced -------------------------------------------------------------------------------- /src/keyutils.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/keyutils.iced -------------------------------------------------------------------------------- /src/log.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/log.iced -------------------------------------------------------------------------------- /src/merkle_client.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/merkle_client.iced -------------------------------------------------------------------------------- /src/package.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/package.iced -------------------------------------------------------------------------------- /src/prompter.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/prompter.iced -------------------------------------------------------------------------------- /src/proxyca.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/proxyca.iced -------------------------------------------------------------------------------- /src/pw.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/pw.iced -------------------------------------------------------------------------------- /src/queue.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/queue.iced -------------------------------------------------------------------------------- /src/req.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/req.iced -------------------------------------------------------------------------------- /src/scrapers.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/scrapers.iced -------------------------------------------------------------------------------- /src/services.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/services.iced -------------------------------------------------------------------------------- /src/session.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/session.iced -------------------------------------------------------------------------------- /src/setup.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/setup.iced -------------------------------------------------------------------------------- /src/sigchain.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/sigchain.iced -------------------------------------------------------------------------------- /src/sigs.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/sigs.iced -------------------------------------------------------------------------------- /src/tor.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/tor.iced -------------------------------------------------------------------------------- /src/tracksubsub.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/tracksubsub.iced -------------------------------------------------------------------------------- /src/trackwrapper.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/trackwrapper.iced -------------------------------------------------------------------------------- /src/user.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/user.iced -------------------------------------------------------------------------------- /src/util.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/util.iced -------------------------------------------------------------------------------- /src/version.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/src/version.iced -------------------------------------------------------------------------------- /test/conf/client_test.json.3s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/conf/client_test.json.3s -------------------------------------------------------------------------------- /test/config.json.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/config.json.asc -------------------------------------------------------------------------------- /test/files/0_alice.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/0_alice.iced -------------------------------------------------------------------------------- /test/files/1_bob.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/1_bob.iced -------------------------------------------------------------------------------- /test/files/20_revoke.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/20_revoke.iced -------------------------------------------------------------------------------- /test/files/2_follow.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/2_follow.iced -------------------------------------------------------------------------------- /test/files/3_enc_dec.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/3_enc_dec.iced -------------------------------------------------------------------------------- /test/files/4_gen.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/4_gen.iced -------------------------------------------------------------------------------- /test/files/5_dir.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/5_dir.iced -------------------------------------------------------------------------------- /test/files/7_bitcoin.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/7_bitcoin.iced -------------------------------------------------------------------------------- /test/files/8_multikey.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/8_multikey.iced -------------------------------------------------------------------------------- /test/files/99_cleanup.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/99_cleanup.iced -------------------------------------------------------------------------------- /test/files/gen.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/files/gen.iced -------------------------------------------------------------------------------- /test/lib/cmd.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/lib/cmd.iced -------------------------------------------------------------------------------- /test/lib/config.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/lib/config.iced -------------------------------------------------------------------------------- /test/lib/github.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/lib/github.iced -------------------------------------------------------------------------------- /test/lib/twitter.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/lib/twitter.iced -------------------------------------------------------------------------------- /test/lib/user.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/lib/user.iced -------------------------------------------------------------------------------- /test/run.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/node-client/HEAD/test/run.iced --------------------------------------------------------------------------------