 (Trezor logo and photo of Trezor Model T pictured above belongs to [Trezor / SatoshiLabs](https://www.trezor.io) - the company behind Trezor. OpenSSH logo is the official OpenSSH logo as found on [openssh.com](https://www.openssh.com)) # DISCLAIMER 1. **I am not sponsored by Trezor / SatoshiLabs.** I bought a Trezor recently, and was disappointed by the lack of official information regarding the SSH support and using Trezor's SSH support on macOS. After piecing some information together from around the web, I managed to get SSH support working decently on macOS, and figured I would save people a lot of time by explaining everything in one singular article. 2. **I did not invent nor do I / have I ever developed Trezor's products. I am not involved in developing `trezor-agent` or it's dependencies.** If bad things happen to you as a result of following this article, whether loss of coins, loss of data, or getting locked out of your server(s) - I am not responsible. # What is Trezor? [](https://www.trezor.io) (Official promo image created by [Trezor themselves](https://www.trezor.io)) Trezor is the brand name for one of the longest standing Hardware Wallets - created by [SatoshiLabs](https://satoshilabs.com/). The first Trezor model was released in January 2014, known as "Trezor One". A hardware wallet is a device which can generate / store private keys for cryptocurrencies such as Bitcoin, Litecoin, DOGE, and even EOS! Not only can it store keys, but it's able to use them to sign transactions from within the device itself. This means that the private keys never leave the device. Since 2014, Trezor has become the gold standard for hardware wallets, with support for over 1000 cryptocurrencies, and extra non-cryptocurrency security features - such as: - The ability to use your Trezor as a U2F security token (it can act like a [YubiKey](https://yubico.com)) - Support for using it as a hardware GPG/PGP device - Support for using it as a password manager - And recently - support for generating and using SSH keys for authentication when connecting to servers/other devices over SSH. ## How much does a Trezor cost? The cost varies based on your location, due to VAT (sales tax), shipping costs etc. For the USA - the Trezor One currently costs $55.00 USD (48.76 EUR), while the Trezor Model T costs $169.99 USD (149 EUR). A lot of US states don't have sales tax, and Trezor offers free shipping to the USA - so depending on which state you're in - the prices listed here are all you'll pay. For the UK, the Trezor One costs 48.76 EUR + 10 EUR shipping + 11.75 EUR VAT (total: 70.51 EUR), while the Trezor Model T costs 178.80 EUR + 10 EUR shipping + 31.80 EUR VAT (total 190.80 EUR). **NOTE:** These prices may vary over time, and may also be different depending on which country that you're ordering the device to. To decide whether you want to buy the cheaper Model One, or the more expensive (but more powerful) Model T, go to https://trezor.io which has a comparison between the two models. If you already know which model you want - and want to buy one now, or just check the prices - go to https://shop.trezor.io # Trezor SSH Authentication Support In this article, I'm going to be showing you how to use Trezor's SSH authentication support with macOS (Mac OSX), which will allow you to **generate an Ed25519 SSH key** on your Trezor Model One or Model T, as well as the ability to **use it to log into servers**, with **effective SSH 2FA** through authorising SSH logins using your Trezor screen / buttons.  Above is a photo of my Trezor Model T asking for confirmation when I was trying to connect to an example VPS which was used in the making of this guide. As you can see, **this will help protect your personal / organisation's servers from the risk of SSH key stealing malware**, as the private SSH key is kept on your Trezor (cannot be extracted), and any attempts at connecting to an SSH server using your Trezor SSH key will require human confirmation by either tapping a button on the touch screen, or pressing a physical button (depending on the Trezor model you have). # What you need (Requirements) - A Trezor hardware wallet which has already been setup, unlocked, and plugged into your Mac. - While I have only tested this guide against my personal Model T (the more expensive Trezor), it should also work on the lower end Model One - as "SSH" is listed in the features of both devices. - The [trezor-agent](https://github.com/romanz/trezor-agent) service also works with other hardware wallets, primarily certain Ledger models, and Shapeshift's KeepKey. But again - this article is only going to cover usage with the Trezor. - A Mac (Hackintosh may work) running OSX High Sierra (10.13), Mojave (10.14), or Catalina (10.15). It may work on older/newer versions of OSX, however these are the supported versions which are listed in [the Homebrew formula](https://formulae.brew.sh/formula/trezor-agent). - Trezor's SSH support also works on Windows, Linux and NixOS - but this guide is only going to be covering macOS - since Trezor does not have any documentation on how to use it on macOS. - You may also need [Trezor Bridge](https://wallet.trezor.io/#/bridge) installed for this to work properly. I'm not sure whether it's needed or not, but it will generally improve your Trezor experience overall as it allows Trezor to work with non-Chrome based browsers. - Basic experience working with the macOS terminal. If you don't know how to use the macOS terminal, then you probably also don't know how to use a Linux shell once you're connected via SSH - so this really shouldn't need to be said... # Install and configure Trezor SSH Agent First, you'll need the packages `libusb` (used for communicating with the Trezor) and `trezor-agent` (an SSH key agent which talks with your Trezor) For those wondering "is trezor-agent safe? is it going to steal my crypto?" - first I applaud you for even thinking about that - secondly, the answer is: probably not. [Trezor-agent is open source and supported by Trezor directly](https://github.com/romanz/trezor-agent). ## Installing `trezor-agent` Both `libusb` and `trezor-agent` can be easily installed using [Homebrew](https://brew.sh) like so: ``` brew install libusb brew install trezor-agent ``` ## Generating an SSH key Now, assuming there were no big red errors spat out during the installation, you can now generate an SSH key. Unfortunately, the built-in macOS `ssh-keygen` does not yet support key generation using hardware wallets yet, but `trezor-agent` includes a tool to allow you to work around this. > **Note about key names**: From what I'm aware so far, the name of your key (for example `johndoe@my-trezor`) is very important. The name of your key is used in the derivation process along with your seed - meaning that `trezor-agent -e ed25519 johndoe@my-trezor` will **always generate the same public and private key based on your seed**. In the below example, we'll generate the key `johndoe@my-trezor` (you can change the user `johndoe` and host `my-trezor` to something more personal to you), using the algorithm `ed25519` - which is a modern Elliptic Curve (EC) algorithm which has a great balance between performance, key size and security: ``` trezor-agent -e ed25519 johndoe@my-trezor >> ~/.ssh/trezor.conf ``` If you `cat` the file `~/.ssh/trezor.conf` - you'll find that it simple contains your SSH public key in OpenSSH `authorized_keys` format, for copying to other servers. ``` $ cat ~/.ssh/trezor.conf ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILcjJR3Ks3+C/BTfH0K2iwEpO+I3WQ6eIPyED4hGx8Pi <ssh://johndoe@my-trezor|ed25519> ``` ## Running `trezor-agent` in the background as a service Create the folder `~/.ssh/trezor-agent` - which will be used to house the UNIX socket file for trezor-agent, as well as the error log file. ``` mkdir -p ~/.ssh/trezor-agent ``` Now, you'll want to install the background service, known as a **launchd plist file**. Download the **trezor.ssh.socket.plist** file from [Privex](https://www.privex.io) using `wget` - outputting it directly into `~/Library/LaunchAgents/trezor.ssh.socket.plist` ``` wget -O ~/Library/LaunchAgents/trezor.ssh.socket.plist https://cdn.privex.io/extras/configs/trezor.ssh.socket.plist ``` Once you've downloaded the plist file, we can register it as a background service using `launchctl`: ``` launchctl load ~/Library/LaunchAgents/trezor.ssh.socket.plist ``` We can confirm that the service was registered using `launchctl list | grep -i trezor` - look for **Trezor SSH Socket** ``` $ launchctl list | grep -i trezor 95865 0 com.bitcointrezor.trezorBridge.trezord - 1 Trezor SSH Socket ``` We can see that the first column - which normally holds the Process ID (PID) to tell you the process this service is running as - is currently blank. This means that the socket service is not running. To start the service, we use `launchctl start` followed by the **name of the service** in quotes. In this case, it's name is `Trezor SSH Socket`: ``` launchctl start "Trezor SSH Socket" ``` If we check `launchctl list` again - we'll find that the **Trezor SSH Socket** is now running under a process ID (the process ID will vary every time it's ran - all that matters is that there's a number in the first column). ``` $ launchctl list | grep -i trezor 95865 0 com.bitcointrezor.trezorBridge.trezord 94975 139 Trezor SSH Socket ``` We can further confirm that the agent is running by checking if it created the socket file and error log (run `ls -l ~/.ssh/trezor-agent`): ``` $ ls -l ~/.ssh/trezor-agent total 8 lrwxr-xr-x 1 Someguy123 staff 45 26 Jul 10:56 S.ssh -> /private/tmp/com.apple.launchd.XZqiA1Ijrj/ssh -rw-r--r-- 1 Someguy123 staff 149 26 Jul 10:56 error.log ``` # Using your Trezor SSH key(s) ## Copy your SSH public key to remote servers/devices As we saw previously when we ran `cat ~/.ssh/trezor.conf` - that file contains a public key like this: ``` ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILcjJR3Ks3+C/BTfH0K2iwEpO+I3WQ6eIPyED4hGx8Pi <ssh://johndoe@my-trezor|ed25519> ``` The easiest way to copy the key without any extra accidental characters or whitespace, is to use the built-in command `pbcopy` (short for "pasteboard copy") ``` pbcopy < ~/.ssh/trezor.conf ``` Your new Trezor public key should now be on your clipboard, ready to paste where-ever you want to. Simply connect to a remote server (or other device) via SSH, add your new Trezor key to `~/.ssh/authorized_keys` - and then we'll begin the next step. ``` # First make sure .ssh actually exists if you aren't sure. user@some-server ~ $ mkdir ~/.ssh # Now open up ~/.ssh/authorized_keys with your favourite editor # and paste the public key onto a new line. user@some-server ~ $ nano ~/.ssh/authorized_keys ``` ## Add the `ssh-trez` function to your bashrc / zshrc On macOS, using a Trezor SSH key requires using `trezor-agent` as your SSH agent. For many people, changing their default SSH agent to Trezor SSH agent would cause a lot of problems if they still use standard SSH keys locally. Similarly, while it's possible to configure certain SSH hosts to always use the Trezor agent, this can be a pain if you frequently connect to new servers which you haven't yet configured in your `~/.ssh/config`. I also quickly found that **OpenSSH does not prompt you to authorise connections on your Trezor** - instead it just ***appears as if your SSH connection has hung*** - until you realise that you had to confirm it on your Trezor. **Because of these issues, I've written a small, simple function which works with both Bash, ZSH, and most other shells**. This function, `ssh-trez` - is a shortcut for `ssh -o 'IdentityAgent ~/.ssh/trezor-agent/S.ssh' [args]` - which is the SSH command you'd have to enter any time you wanted to connect to a host using your Trezor SSH key without configuring it in `.ssh/config`. The function also prints out some colourful messages to stderr, letting you know what arguments were passed to `ssh`, AND **reminding you to authorise the login on your Trezor**. **NOTE:** If you're not sure what shell you're using, then you're probably using Bash. If you use Bash, open up `~/.bashrc` in your preferred editor. If you use ZSH, open up `~/.zshrc` in your preferred editor. **Example:** ``` nano ~/.bashrc ``` At the bottom of the file, simply paste the following lines of code to add the `ssh-trez` convenience function: ``` BOLD="" GREEN="" YELLOW="" RESET="" if [ -t 1 ]; then BOLD="$(tput bold)" GREEN="$(tput setaf 2)" YELLOW="$(tput setaf 3)" RESET="$(tput sgr0)" fi ssh-trez() { >&2 echo -e "${BOLD}${GREEN} [...] Connecting to SSH using parameters:${RESET} $*" >&2 echo -e "${YELLOW} [...] Please remember to CONFIRM the login on your Trezor!${RESET}" ssh -o 'IdentityAgent ~/.ssh/trezor-agent/S.ssh' "$@" } ``` ## Connecting to an SSH host directly using a Trezor SSH key  Using my helper function `ssh-trez` - we can connect to an arbitrary server without the need to configure it in the SSH config to use Trezor. ``` ssh-trez root@1.2.3.4 ``` As can be seen in the screenshot above - `ssh-trez` reminds us that we need to approve the login on our Trezor.  On my Trezor, the screen shows "Sign SSH" with the description "johndoe@my-trezor" - which tells me that if I hit the green tick - I'll be allowing an application to sign something using the SSH key `johndoe@my-trezor`. In this case it's legitimate, so go ahead and tap that green tick :)  Now that we've tapped the green tick on the Trezor, we're now logged into the server via SSH. Just as a proof of concept, I set up a [FreeBSD](https://www.freebsd.org) VPS - which was used in the above screenshot to show that Trezor's SSH agent works not only when connecting to Linux systems, but should also work for connecting to other operating systems SSH without issues. ## Configuring SSH to always connect to a certain host using Trezor For servers that you might frequently connect to using your Trezor SSH key, and/or need your Trezor key to work with other SSH-based applications such as `rsync` or `scp` - then you'll want to setup an SSH host config entry. Open up `~/.ssh/config` on your Mac in your favourite editor: ``` nano ~/.ssh/config ``` This file may not exist if you've never setup a `~/.ssh/config` file before. That's fine though - the following config will work even with a previously blank/non-existent config file. Add the following lines to the end of the `~/.ssh/config` file: ``` Host someguy-bsd Hostname 178.128.170.247 User root Port 22 IdentityAgent ~/.ssh/trezor-agent/S.ssh ``` - The `Host` line defines arbitrary user set aliases for this SSH host. You can define multiple aliases by separating them with spaces. In my case, I have aliased the host as `someguy-bsd`. - The `Hostname` line defines either the IP address (IPv4 or IPv6), or a domain/hostname which points to the server you're defining. - The `Port` line is optional - it defaults to `22` if not specified. However I've included it just to make it clear for anyone who might have SSH on a non-standard port. - The `IdentityAgent` line is the most important line. This tells OpenSSH to use the SSH agent located at this UNIX socket file. In this case, we're wanting it to use `trezor-agent`'s agent socket located at `~/.ssh/trezor-agent/S.ssh` Adjust the config lines to point to your own server that you're wanting to use your Trezor SSH key with. Then, save the file. ### Connecting to a host defined in `~/.ssh/config` In the previous section, I defined the host alias `someguy-bsd`. So, in order to connect to that host, we can simply use standard `ssh` - but instead of typing the `user@host` - we only have to type the alias. ``` ssh someguy-bsd ```  Unlike with `ssh-trez` - it will appear as if your `ssh` command has simply hung. So pay close attention to your Trezor - as it will only prompt you on the Trezor screen to authorise the connection.  Once you've authorised the SSH login - you'll then be successfully logged into your server / other device. # References This article was based on a much less in-depth article by [RRYTER](https://blog.rryter.ch/2020/04/29/ssh-via-hw-wallet-trezor-t-on-macos/), and there's a few other special mentions which helped make this article possible: - [SSH via Hardware Wallet on macOS - by RRYTER](https://blog.rryter.ch/2020/04/29/ssh-via-hw-wallet-trezor-t-on-macos/) - The original article which covered some of the key points, but missed out some important information such as how to actually use the plist file - [trezor.ssh.socket.plist file published on Gist by RRYTER](https://gist.github.com/rryter/f5f439fd67ea049cad3a9e64bbc98269) - The plist service file written by RRYTER as part of the previously mentioned article - now mirrored on Privex's CDN (with a back reference added in the plist source code) - https://github.com/romanz/trezor-agent - https://github.com/romanz/trezor-agent/blob/master/doc/INSTALL.md - [MacOS βlaunchdβ examples - by Alvin Alexander](https://alvinalexander.com/mac-os-x/launchd-examples-launchd-plist-file-examples-mac/) - for understanding where to install the .plist service file - [How to Use launchd to Run Services in macOS - by Kosala Sananthana](https://medium.com/swlh/how-to-use-launchd-to-run-services-in-macos-b972ed1e352) - for understanding how to load the plist, start it, and confirm it's running etc. --- Thanks for reading! --- <center>  </center> GIF Avatar by @stellabelle --- Do you like what I'm doing for Hive? ---- [Vote for me to be a Hive witness](https://peakd.com/witnesses) - every vote counts. ---- Don't forget to follow me for more like this. ---- --- Have you ever thought about being a witness yourself? Join the [witness channel](https://openhive.chat/channel/witness). We're happy to guide you! Join in shaping the STEEM economy. Are you looking for a new server provider? My company @privex offers highly-reliable and affordable dedicated and virtual servers for HIVE, HBD, EOS, LTC, BTC, and even DOGE! Check out our website at https://www.privex.io You can join Privex's public Discord at https://discord.privex.io - we also have a Matrix server, sign up at https://riot.privex.io (or if you have an existing Matrix account, join our General chat at `#privex:privex.io`) ---
author | someguy123 |
---|---|
permlink | using-trezor-hardware-wallet-as-a-hardware-ssh-key-on-mac-osx |
category | security |
json_metadata | "{"app":"peakd/2020.07.1","format":"markdown","description":"In this article, I'm going to be showing you how to use Trezor's SSH authentication support with macOS (Mac OSX)","tags":["security","trezor","hardware","wallet","ssh","sysadmin","bitcoin","litecoin","eos"],"users":["my-trezor","some-server","1.2.3.4","host","stellabelle","privex"],"links":["https://www.trezor.io","https://www.openssh.com","https://www.trezor.io","https://www.trezor.io","https://satoshilabs.com/","https://yubico.com","https://trezor.io","https://shop.trezor.io","https://github.com/romanz/trezor-agent","https://formulae.brew.sh/formula/trezor-agent"],"image":["https://i.imgur.com/RNBLRYP.png","https://trezor.io/static/images/trezor_social02.jpg","https://i.imgur.com/0AM6Xpr.jpg","https://i.imgur.com/eI5KWUC.png","https://i.imgur.com/4PwM6lD.png","https://i.imgur.com/u0H2D8s.png","https://cdn.discordapp.com/attachments/379745956134125569/737091330143944806/SOMEX123.gif"]}" |
created | 2020-07-26 14:29:18 |
last_update | 2020-07-27 00:25:24 |
depth | 0 |
children | 23 |
last_payout | 2020-08-02 14:29:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 20.014 HBD |
curator_payout_value | 17.422 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19,089 |
author_reputation | 103,945,664,283,580 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,728,939 |
net_rshares | 93,658,232,299,329 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 20,664,540,148,341 | 10% | ||
kingscrown | 0 | 8,388,548,738,427 | 100% | ||
klye | 0 | 103,208,796,468 | 100% | ||
stellabelle | 0 | 86,608,236,999 | 100% | ||
thecryptodrive | 0 | 387,999,129,110 | 100% | ||
gerber | 0 | 1,104,588,161,128 | 17% | ||
roelandp | 0 | 2,694,347,451,955 | 50% | ||
daan | 0 | 59,283,684,343 | 8% | ||
ezzy | 0 | 1,314,101,615,376 | 17% | ||
bitshares101 | 0 | 59,531,647,387 | 25% | ||
mrwang | 0 | 34,472,224,653 | 50% | ||
arcange | 0 | 104,818,542,380 | 3% | ||
exyle | 0 | 1,293,882,770,628 | 17% | ||
raphaelle | 0 | 2,606,151,341 | 3% | ||
kibela | 0 | 4,455,063,635 | 13.75% | ||
twinner | 0 | 4,563,986,538,643 | 25% | ||
timcliff | 0 | 1,297,905,075,538 | 100% | ||
laoyao | 0 | 44,471,446,915 | 100% | ||
somebody | 0 | 76,280,896 | 100% | ||
midnightoil | 0 | 156,061,336,854 | 100% | ||
alinalazareva | 0 | 650,663,751 | 10% | ||
xiaohui | 0 | 883,036,275,128 | 100% | ||
jphamer1 | 0 | 7,297,352,275,536 | 100% | ||
oflyhigh | 0 | 4,660,047,977,122 | 100% | ||
randyclemens | 0 | 83,283,935,515 | 100% | ||
anarcist69 | 0 | 11,305,519,448 | 25% | ||
kiddarko | 0 | 63,776,703,908 | 50% | ||
yulan | 0 | 15,759,687,628 | 100% | ||
azizbd | 0 | 12,910,472,393 | 20% | ||
anech512 | 0 | 9,502,352,491 | 25% | ||
helene | 0 | 1,161,681,066,353 | 100% | ||
someguy123 | 0 | 1,907,827,939,473 | 100% | ||
dadview | 0 | 13,823,622,982 | 30% | ||
funnyman | 0 | 3,543,794,917 | 20% | ||
justyy | 0 | 411,168,755,496 | 50% | ||
koskl | 0 | 84,097,144,592 | 100% | ||
lloyddavis | 0 | 79,800,239,122 | 100% | ||
ssekulji | 0 | 18,899,559,679 | 100% | ||
r0nd0n | 0 | 97,219,952,058 | 100% | ||
rishi556 | 0 | 13,343,568,113 | 100% | ||
dashfit | 0 | 10,087,395,898 | 50% | ||
tangmo | 0 | 88,825,104,024 | 100% | ||
builderofcastles | 0 | 21,410,272,816 | 25% | ||
adventureevryday | 0 | 59,112,189,153 | 100% | ||
cardboard | 0 | 11,649,999,454 | 100% | ||
zedikaredirect | 0 | 15,109,294,553 | 75% | ||
blackbunny | 0 | 69,805,372,812 | 100% | ||
steemcenterwiki | 0 | 1,129,037,939 | 5% | ||
lingfei | 0 | 78,541,969,858 | 100% | ||
steemitboard | 0 | 2,728,188,260 | 2% | ||
privex | 0 | 92,523,883,799 | 100% | ||
sudutpandang | 0 | 4,560,072,708 | 100% | ||
buzzbeergeek | 0 | 1,003,066,873 | 100% | ||
yuslindwi | 0 | 1,301,761,304 | 50% | ||
detlev | 0 | 19,494,996,110 | 1.5% | ||
steemitcitizen | 0 | 4,297,362,687 | 50% | ||
dune69 | 0 | 68,788,703,469 | 17% | ||
mys | 0 | 4,412,725,052 | 1.7% | ||
malicered | 0 | 90,063,648,385 | 100% | ||
rycharde | 0 | 1,183,136,812 | 10% | ||
tomaszs77 | 0 | 35,724,406,138 | 32% | ||
schoolforsdg4 | 0 | 39,499,423,741 | 20% | ||
exec | 0 | 240,239,974,968 | 100% | ||
eval | 0 | 797,001,532 | 100% | ||
mdosev | 0 | 21,455,345,535 | 50% | ||
dontstopmenow | 0 | 2,057,436,163 | 100% | ||
maxer27 | 0 | 145,451,785,587 | 25% | ||
wf9877 | 0 | 5,918,716,499 | 100% | ||
mahdiyari | 0 | 461,244,296,603 | 100% | ||
aboutyourbiz | 0 | 19,646,630,097 | 100% | ||
drakos | 0 | 1,579,882,416,769 | 100% | ||
ew-and-patterns | 0 | 206,590,418,560 | 9% | ||
whd | 0 | 2,239,702,927 | 1.7% | ||
d-pend | 0 | 50,980,212,330 | 1.7% | ||
makrotheblack | 0 | 3,803,142,172 | 50% | ||
britcoins | 0 | 2,739,763,030 | 100% | ||
cryptopie | 0 | 887,472,500,268 | 92% | ||
simonpeter35 | 0 | 609,307,110 | 50% | ||
gambit.coin | 0 | 682,824,358 | 50% | ||
minnowbooster | 0 | 9,512,124,865,544 | 100% | ||
drorion | 0 | 131,213,642,349 | 100% | ||
hope-on-fire | 0 | 289,979,261,505 | 26% | ||
nicniezgrublem | 0 | 652,059,966 | 16.15% | ||
shitsignals | 0 | 7,043,165,644 | 17% | ||
marian0 | 0 | 24,381,054,645 | 100% | ||
dine77 | 0 | 14,145,523,786 | 17% | ||
yoogyart | 0 | 22,231,504,685 | 50% | ||
khalil319 | 0 | 891,327,060 | 50% | ||
msp-waves | 0 | 1,167,616,264,449 | 100% | ||
felander | 0 | 89,134,063,167 | 17% | ||
santigs | 0 | 14,436,390,793 | 37% | ||
pele23 | 0 | 70,161,734,036 | 20% | ||
fbslo | 0 | 3,807,029,981 | 0.85% | ||
accelerator | 0 | 50,044,017,512 | 5% | ||
marcusantoniu26 | 0 | 586,707,084,673 | 100% | ||
trevorpetrie | 0 | 83,737,152,247 | 100% | ||
neoconqueso | 0 | 4,782,984,021 | 100% | ||
apasia.tech | 0 | 9,534,138,905 | 100% | ||
yogacoach | 0 | 7,807,783,282 | 8.5% | ||
deathwing | 0 | 18,736,705,370 | 17% | ||
scorer | 0 | 4,599,874,205 | 100% | ||
superbing | 0 | 571,312,009 | 90% | ||
steembet.asia | 0 | 666,296,583 | 100% | ||
nova-tv | 0 | 1,590,775,682 | 75% | ||
gardeningabc | 0 | 6,602,709,200 | 100% | ||
kimchi-king | 0 | 1,820,298,452 | 50% | ||
msp-mods | 0 | 1,417,553,072,477 | 100% | ||
emrebeyler | 0 | 376,054,560,526 | 17% | ||
instatrashed | 0 | 14,092,510,799 | 50% | ||
nirgf | 0 | 11,689,149,856 | 100% | ||
jutdagut | 0 | 786,567,322 | 100% | ||
mister-omortson | 0 | 63,498,108,626 | 100% | ||
tazi | 0 | 213,133,400,218 | 70% | ||
tomatom | 0 | 578,590,409 | 5% | ||
jim888 | 0 | 1,142,346,524,995 | 100% | ||
gabrielatravels | 0 | 2,998,829,928 | 2% | ||
thedrewshow | 0 | 809,224,382 | 100% | ||
hijosdelhombre | 0 | 49,126,355,412 | 50% | ||
nealmcspadden | 0 | 408,807,240,040 | 17% | ||
admiralsp | 0 | 1,059,677,115 | 100% | ||
womenempowerment | 0 | 9,337,538,081 | 20% | ||
patricklancaster | 0 | 8,566,416,157 | 50% | ||
purefood | 0 | 269,196,358,575 | 17% | ||
cfminer | 0 | 553,140,122 | 100% | ||
investprosper | 0 | 43,812,095,358 | 50% | ||
unconditionalove | 0 | 1,933,323,651 | 8.5% | ||
pkocjan | 0 | 6,772,354,401 | 13.6% | ||
howtosteem | 0 | 4,561,982,445 | 100% | ||
thebluewin | 0 | 181,034,160,388 | 100% | ||
auminda | 0 | 273,619,067,494 | 100% | ||
movement19 | 0 | 146,335,748,332 | 100% | ||
futurecurrency | 0 | 18,927,208,324 | 34% | ||
frassman | 0 | 783,864,928 | 5% | ||
goldenproject | 0 | 12,367,743,747 | 30% | ||
sunshinebear | 0 | 1,146,100,847 | 50% | ||
phaazer1 | 0 | 2,069,543,241 | 50% | ||
beleg | 0 | 737,357,296 | 1.7% | ||
bestboom | 0 | 66,512,732,564 | 17% | ||
abrockman | 0 | 69,429,917,745 | 17% | ||
freddio | 0 | 14,947,304,508 | 15% | ||
themightyvolcano | 0 | 25,704,277,055 | 17% | ||
gifty-e | 0 | 816,637,644 | 100% | ||
payroll | 0 | 3,871,776,340,095 | 10% | ||
petertag | 0 | 50,125,303,889 | 100% | ||
solominer | 0 | 2,839,417,846,856 | 100% | ||
glodniwiedzy | 0 | 4,788,029,655 | 16.15% | ||
serialfiller | 0 | 60,621,319 | 2% | ||
valentin86 | 0 | 950,454,523 | 100% | ||
pladozero | 0 | 78,002,826,363 | 10% | ||
nateaguila | 0 | 291,695,282,890 | 8% | ||
davidesimoncini | 0 | 8,130,830,376 | 25% | ||
trisolaran | 0 | 26,860,527,064 | 50% | ||
therabbitzone | 0 | 531,298,991 | 50% | ||
niouton | 0 | 5,394,140,050 | 20% | ||
w00tl00t | 0 | 2,222,305,261 | 50% | ||
swisswitness | 0 | 9,949,105,881 | 17% | ||
moneybaby | 0 | 801,281,152 | 2.5% | ||
apshamilton | 0 | 311,463,505,170 | 100% | ||
gallerani | 0 | 1,041,385,282 | 17% | ||
hamismsf | 0 | 548,345,073,138 | 100% | ||
dalz | 0 | 24,507,525,232 | 8.5% | ||
yaelg | 0 | 45,997,118,695 | 90% | ||
goumao | 0 | 827,146,859 | 100% | ||
dlike | 0 | 205,698,242,022 | 17% | ||
triptolemus | 0 | 1,592,849,095 | 17% | ||
gorbisan | 0 | 1,578,454,236 | 0.85% | ||
engrave | 0 | 221,924,201,780 | 16.15% | ||
a-bot | 0 | 35,091,214,284 | 100% | ||
bobby.madagascar | 0 | 5,907,233,257 | 4.25% | ||
laissez-faire | 0 | 38,428,329 | 100% | ||
creativeblue | 0 | 7,598,194,964 | 50% | ||
ldp | 0 | 2,760,098,393 | 17% | ||
followjohngalt | 0 | 96,353,359,003 | 17% | ||
dein-problem | 0 | -121,753,598 | -1% | ||
starrouge | 0 | 543,834,930 | 30% | ||
jpbliberty | 0 | 316,720,174,540 | 100% | ||
wherein | 0 | 365,204,480,518 | 60% | ||
bluerobo | 0 | 75,797,354,449 | 100% | ||
zerofive | 0 | 538,351,754 | 30% | ||
flyingbolt | 0 | 1,256,798,767 | 17% | ||
determine | 0 | 1,015,861,002 | 17% | ||
cnstm | 0 | 165,358,134,238 | 60% | ||
permaculturedude | 0 | 3,383,923,522 | 8.5% | ||
jamesbattler | 0 | 110,912,616,412 | 100% | ||
lianjingmedia | 0 | 540,349,178 | 60% | ||
hanke | 0 | 6,718,114,612 | 100% | ||
limka | 0 | 48,244,614 | 100% | ||
abbenay | 0 | 1,044,465,879 | 5% | ||
hungryharish | 0 | 1,184,213,867 | 4.25% | ||
contrabourdon | 0 | 122,401,291,894 | 100% | ||
mfblack | 0 | 17,437,381,660 | 16.15% | ||
helgalubevi | 0 | 1,223,070,984 | 5% | ||
beerlover | 0 | 928,491,365 | 0.75% | ||
sm-silva | 0 | 1,948,371,333 | 8.5% | ||
socialbot | 0 | 8,180,604,279 | 20% | ||
bitsharesorg | 0 | 16,619,354,362 | 100% | ||
tinyhousecryptos | 0 | 531,314,622 | 5% | ||
firefuture | 0 | 914,300,285 | 17% | ||
steemindian | 0 | 1,569,561,729 | 8.5% | ||
waraira777 | 0 | 853,808,591 | 50% | ||
milu-the-dog | 0 | 7,432,921,597 | 17% | ||
triplea.bot | 0 | 6,177,773,793 | 17% | ||
steem.leo | 0 | 439,318,937,516 | 17% | ||
everythingsmgirl | 0 | 1,147,048,457 | 50% | ||
good.game | 0 | 42,854,380,396 | 100% | ||
freddio.sport | 0 | 4,275,426,525 | 15% | ||
zaku-pal | 0 | 622,827,020 | 17% | ||
zaku-leo | 0 | 622,528,103 | 17% | ||
asteroids | 0 | 91,024,402,379 | 15.3% | ||
mapxv | 0 | 4,521,209,817 | 29% | ||
drlobes | 0 | 9,527,387,730 | 50% | ||
one.life | 0 | 2,450,866,315 | 16.96% | ||
maxuvd | 0 | 21,267,182,188 | 6% | ||
maxuve | 0 | 28,119,407,608 | 6% | ||
dappcoder | 0 | 2,847,167,066 | 33% | ||
in-macro | 0 | 14,065,354,334 | 100% | ||
ibelin | 0 | 5,409,362,181 | 49% | ||
therealyme | 0 | 1,052,304,474 | 13.6% | ||
blocktvnews | 0 | 1,035,641,851 | 8.5% | ||
huaren.news | 0 | 116,349,682,631 | 12% | ||
gerbo | 0 | 167,931,767 | 17% | ||
ribary | 0 | 5,617,495,156 | 8.5% | ||
mice-k | 0 | 73,499,194,846 | 17% | ||
staryao | 0 | 4,046,666,781 | 30% | ||
techhype | 0 | 3,354,506,036 | 100% | ||
drew0 | 0 | 592,944,770 | 5% | ||
steemcityrewards | 0 | 2,427,095,759 | 17% | ||
dpend.active | 0 | 5,497,738,426 | 3.4% | ||
fengchao | 0 | 3,499,027,851 | 3% | ||
hivebuzz | 0 | 0 | 5% | ||
blue-witness | 0 | 3,102,949,844 | 100% | ||
folklure | 0 | 1,447,880,370 | 8.5% | ||
nulledgh0st | 0 | 726,772,422,806 | 50% | ||
softworld | 0 | 544,255,281,736 | 36% | ||
polish.hive | 0 | 45,109,298,414 | 17% | ||
dcityrewards | 0 | 389,725,790,066 | 17% | ||
hextech | 0 | 4,580,146,876 | 66% | ||
sketching | 0 | 917,542,384 | 8.5% | ||
hivelist | 0 | 16,092,169,549 | 8.5% | ||
wlslink | 0 | 5,326,271,244 | 100% | ||
raven.icu | 0 | 2,451,953,865 | 100% | ||
hivecur | 0 | 426,674,422,090 | 17% | ||
kran7 | 0 | 533,077,659 | 100% | ||
kran8 | 0 | 533,077,627 | 100% | ||
kran9 | 0 | 533,046,457 | 100% | ||
kran10 | 0 | 533,045,583 | 100% | ||
chartreader | 0 | 126,124,371,245 | 17% | ||
reward.app | 0 | 6,206,460,415 | 20% | ||
karla154 | 0 | 0 | 100% |
I recently got myself one of these so Iβm going to try this as a hardware SSH key now. Thanks so much for documenting this.
author | contrabourdon |
---|---|
permlink | re-someguy123-qe3bf9 |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-26 18:59:36 |
last_update | 2020-07-26 18:59:36 |
depth | 1 |
children | 1 |
last_payout | 2020-08-02 18:59:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.252 HBD |
curator_payout_value | 0.252 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 224,346,863,721,971 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,732,788 |
net_rshares | 1,908,564,570,319 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
someguy123 | 0 | 1,908,564,570,319 | 100% |
I've found it works decently so far - albeit it's a little quirky. At least here on OSX, if I don't SSH into a server for 10 mins+, the first login attempt might throw an error, then by the second or third time my Trezor (or the agent) is finally awake and actually responding properly to authorisations. Once whatever fell asleep finally wakes back up - it generally responds quickly when I attempt to SSH into a server that uses my Trezor key for the next 5 minutes or so, until the agent / Trezor falls asleep. My guess is it might just be a bug with the macOS SSH agent not handling Power Nap properly - OSX has this "power nap" feature which takes away CPU resources from any application it believes has been idle for too long - or out of focus etc. Nevertheless, it works *most* of the time, and the concept itself is really great for high security servers. It's also still more convenient than an encrypted SSH key where you have to constantly enter your SSH key password to unlock it etc.
author | someguy123 |
---|---|
permlink | re-contrabourdon-qe3f1i |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-26 20:17:42 |
last_update | 2020-07-26 20:17:42 |
depth | 2 |
children | 0 |
last_payout | 2020-08-02 20:17:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.140 HBD |
curator_payout_value | 0.140 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,000 |
author_reputation | 103,945,664,283,580 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,733,884 |
net_rshares | 1,130,654,736,913 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
someguy123 | 0 | 1,012,708,380,274 | 54% | ||
dein-problem | 0 | -121,753,598 | -1% | ||
contrabourdon | 0 | 118,068,110,237 | 100% |
Dear @someguy123 I've just noticed that `you downvoted `our Project.Hope recent post on HIVE and I was wondering ... what could be the cause of your downvote? Did I upset you in any way? I simply cannot recall any confrontation between us. This is post downvoted by you:https://hive.blog/hive-175254/@project.hope/i-would-love-to-announce-that-our-project-hope-core-team-is-expanding ps. Is there any way to reach out to you? Would you use discord or telegram by any chance? Hope to hear from you, Yours, Piotr @project.hope founder
author | crypto.piotr |
---|---|
permlink | qfbkgd |
category | security |
json_metadata | {"users":["someguy123","project.hope"],"links":["https://hive.blog/hive-175254/@project.hope/i-would-love-to-announce-that-our-project-hope-core-team-is-expanding"],"app":"hiveblog/0.1"} |
created | 2020-08-19 16:28:57 |
last_update | 2020-08-19 16:29:27 |
depth | 1 |
children | 0 |
last_payout | 2020-08-26 16:28:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 538 |
author_reputation | 27,396,789,428,606 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,158,251 |
net_rshares | 0 |
Hey, someguy, what if I changed my recovery account to anonsteem? Since @steem is no longer available for recovering accounts π (I created mine years ago through Steemit)
author | cryptosharon |
---|---|
permlink | re-someguy123-qfbm0n |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.08.3"} |
created | 2020-08-19 17:02:48 |
last_update | 2020-08-19 17:02:48 |
depth | 1 |
children | 0 |
last_payout | 2020-08-26 17:02:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 91,921,317,551,639 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,158,718 |
net_rshares | 0 |
Congratulations @someguy123! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@someguy123/upvotes.png?202007260126"></td><td>You distributed more than 33000 upvotes. Your next target is to reach 34000 upvotes.</td></tr> </table> <sub>_You can view [your badges on your board](https://hivebuzz.me/@someguy123) And compare to others on the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @hivebuzz:** <table><tr><td><a href="/hivebuzz/@hivebuzz/ranking-update1"><img src="https://images.hive.blog/64x128/https://i.imgur.com/Fr0BYh2.png"></a></td><td><a href="/hivebuzz/@hivebuzz/ranking-update1">HiveBuzz Ranking update - New key indicators</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-someguy123-20200726t145647000z |
category | security |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-07-26 14:56:48 |
last_update | 2020-07-26 14:56:48 |
depth | 1 |
children | 0 |
last_payout | 2020-08-02 14:56:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 937 |
author_reputation | 369,400,396,067,243 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,729,283 |
net_rshares | 0 |
Congratulations @someguy123! You received a personal badge! <table><tr><td>https://images.hive.blog/70x70/http://hivebuzz.me/badges/birthday-4.png</td><td>Happy Hive Birthday! You are on the Hive blockchain for 4 years!</td></tr></table> <sub>_You can view [your badges on your board](https://hivebuzz.me/@someguy123) And compare to others on the [Ranking](https://hivebuzz.me/ranking)_</sub> **Do not miss the last post from @hivebuzz:** <table><tr><td><a href="/hivebuzz/@hivebuzz/pudresponse"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hivebuzz/@hivebuzz/pudresponse">Feedback from the last Hive Power Up Day</a></td></tr><tr><td><a href="/hivebuzz/@hivebuzz/pud"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hivebuzz/@hivebuzz/pud">Hive Power Up Day - Let's grow together!</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-someguy123-20200804t212506000z |
category | security |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-08-04 21:25:06 |
last_update | 2020-08-04 21:25:06 |
depth | 1 |
children | 0 |
last_payout | 2020-08-11 21:25:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 910 |
author_reputation | 369,400,396,067,243 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,895,136 |
net_rshares | 0 |
Hey mate, sorry for the off topic comment, just wanted to ask you about how you use the blockchain data for calculating your taxes? I asked arcange if it was possible to do by HiveSQL but he said it didn't have the info on price feeds and HP/HBD/HIVE earned on a specific day so wondering if you can help? I'm on Discord nickyhavey#8424 (in the Leo server if you are). Hope you can help!
author | nickyhavey |
---|---|
permlink | re-someguy123-qnaomk |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2021.01.3"} |
created | 2021-01-21 17:30:27 |
last_update | 2021-01-21 17:30:27 |
depth | 1 |
children | 0 |
last_payout | 2021-01-28 17:30:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 390 |
author_reputation | 343,022,660,476,683 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,487,818 |
net_rshares | 0 |
hmm, is the draw of the trezor over the yubikey the support of crypto keys natively? been looking at getting a yubi key or something similar, wasn't aware that trezor would handle all (?) the same functionality plus more, might have to look into getting a model T instead
author | petertag |
---|---|
permlink | re-someguy123-qe6rop |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-28 15:43:39 |
last_update | 2020-07-28 15:43:39 |
depth | 1 |
children | 3 |
last_payout | 2020-08-04 15:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.249 HBD |
curator_payout_value | 0.249 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 271 |
author_reputation | 17,170,168,350,944 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,765,908 |
net_rshares | 1,932,605,924,441 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
someguy123 | 0 | 1,932,605,924,441 | 100% |
The Trezor is designed to be a hardware wallet for storing many different cryptocurrencies, but also has many other functions too - including support for acting as a U2F key - meaning that it also works with any site that's compatible with FIDO U2F YubiKey's including BitFinex, Google, Dropbox and many other services. It can also handle SSH and GPG keys, protecting you against SSH/GPG key theft if your computer / phone etc. was compromised. Trezor's official wallet only supports about 15 cryptocurrencies, but the Trezor can be used with a lot of different wallets simultaneously such as Exodus (supports about 70 different cryptos via a Trezor), Electrum (a lite wallet which is commonly forked for most Bitcoin-based cryptos such as Litecoin, ZCoin and others), plus more. The "standard" YubiKey has multiple authentication functions - but the most commonly used is U2F (which the Trezor also supports). U2F is an alternative to TOTP 2FA (google authenticator, authy etc.) using hardware "security keys" instead of code generating applications - and is arguably more secure than TOTP, since a hardware U2F device is much more difficult to compromise than most phones. YubiKey does not handle crypto though - it's only useful as an authenticator device. So generally, it's better to just buy a Trezor if you need/want a hardware wallet as well as a security key :)
author | someguy123 |
---|---|
permlink | re-petertag-qe6ycd |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-28 18:07:27 |
last_update | 2020-07-28 18:07:27 |
depth | 2 |
children | 1 |
last_payout | 2020-08-04 18:07:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,376 |
author_reputation | 103,945,664,283,580 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,767,841 |
net_rshares | 50,013,042,444 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
petertag | 0 | 50,134,796,042 | 100% | ||
dein-problem | 0 | -121,753,598 | -1% |
Ty for the info! Definitely gonna get a trezor then, knew it worked as a hardware wallet but didn't know it supported U2F & SSH/GPG, seems like a pretty comprehensive solution. And also thanks for all the work you do for hive, your tutorials were really helpful when I was setting up a witness a while ago & privex seems like a great service, even though I didn't follow through on it (mostly because I didn't want to deal with witnessing again tbh). Cheers
author | petertag |
---|---|
permlink | re-someguy123-qearfu |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.2"} |
created | 2020-07-30 19:28:42 |
last_update | 2020-07-30 19:28:42 |
depth | 3 |
children | 0 |
last_payout | 2020-08-06 19:28:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 458 |
author_reputation | 17,170,168,350,944 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,805,354 |
net_rshares | 0 |
BTW - here's a photo of my Trezor showing U2F in action  The cool part - unlike a YubiKey, it shows the name and logo of the site that's requesting U2F, helping to make it clear exactly what you're authenticating for, or registering U2F with.
author | someguy123 |
---|---|
permlink | re-petertag-qe6yrd |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-28 18:16:24 |
last_update | 2020-07-28 18:16:24 |
depth | 2 |
children | 0 |
last_payout | 2020-08-04 18:16:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 327 |
author_reputation | 103,945,664,283,580 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,767,967 |
net_rshares | 49,010,392,040 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
petertag | 0 | 49,132,145,638 | 100% | ||
dein-problem | 0 | -121,753,598 | -1% |
Someguy123, you are voting for some dead witnesses, please take a look.
author | postingkeys |
---|---|
permlink | ql58ia |
category | security |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-12-10 21:47:00 |
last_update | 2020-12-10 21:47:00 |
depth | 1 |
children | 0 |
last_payout | 2020-12-17 21:47:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 17,596,826,037,787 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 100,900,623 |
net_rshares | 0 |
This is advance stuff for me but i thank you because i have a little bit of a better understanding now. Lots more to learn thats for sure!
author | recoveryinc |
---|---|
permlink | qegz6y |
category | security |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-08-03 04:01:48 |
last_update | 2020-08-03 04:01:48 |
depth | 1 |
children | 0 |
last_payout | 2020-08-10 04:01:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 35,240,581,747,197 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 98,863,970 |
net_rshares | 0 |
I bought myself a Model T a month ago, I"ll try this out.
author | rishi556 |
---|---|
permlink | re-someguy123-qnkfdf |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2021.01.3"} |
created | 2021-01-26 23:46:27 |
last_update | 2021-01-26 23:46:27 |
depth | 1 |
children | 3 |
last_payout | 2021-02-02 23:46:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 132,756,771,914,568 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,573,739 |
net_rshares | 0 |
Hey i want my bitcoins back or im gonna report you to the relevant financial authorities. Forfor the litcoinminer.space
author | jacruz5890 |
---|---|
permlink | re-rishi556-qnnmlf |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2021.01.3"} |
created | 2021-01-28 17:15:15 |
last_update | 2021-01-28 17:15:15 |
depth | 2 |
children | 2 |
last_payout | 2021-02-04 17:15:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 0 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,599,030 |
net_rshares | 0 |
I got screen shot of all my transactions and your name on it
author | jacruz5890 |
---|---|
permlink | re-jacruz5890-qnnmn5 |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2021.01.3"} |
created | 2021-01-28 17:16:18 |
last_update | 2021-01-28 17:16:18 |
depth | 3 |
children | 1 |
last_payout | 2021-02-04 17:16:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 0 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 101,599,042 |
net_rshares | 0 |
lol i made a new Hive gif for you to use, maybe you didn't like them?
author | stellabelle |
---|---|
permlink | re-someguy123-qe3g2s |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-26 20:40:06 |
last_update | 2020-07-26 20:40:06 |
depth | 1 |
children | 3 |
last_payout | 2020-08-02 20:40:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.146 HBD |
curator_payout_value | 0.146 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 516,061,669,130,124 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,734,217 |
net_rshares | 1,177,476,045,991 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
someguy123 | 0 | 1,177,476,045,991 | 63% |
I did reply to one of your comments last time - gotta keep the cereal guy  You can DM me on Discord about it if you want - Someguy#0123
author | someguy123 |
---|---|
permlink | re-stellabelle-qe3hdt |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-26 21:08:18 |
last_update | 2020-07-26 21:08:18 |
depth | 2 |
children | 2 |
last_payout | 2020-08-02 21:08:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 220 |
author_reputation | 103,945,664,283,580 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,734,611 |
net_rshares | 0 |
ah ok! i didn't have that image!
author | stellabelle |
---|---|
permlink | re-someguy123-qe3hfd |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-26 21:09:15 |
last_update | 2020-07-26 21:09:15 |
depth | 3 |
children | 0 |
last_payout | 2020-08-02 21:09:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 516,061,669,130,124 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,734,627 |
net_rshares | 184,574,023,636 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
someguy123 | 0 | 184,574,023,636 | 10% |
ok i will....
author | stellabelle |
---|---|
permlink | re-someguy123-qe3hfz |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-26 21:09:36 |
last_update | 2020-07-26 21:09:36 |
depth | 3 |
children | 0 |
last_payout | 2020-08-02 21:09:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 516,061,669,130,124 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,734,634 |
net_rshares | 184,208,674,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
someguy123 | 0 | 184,208,674,672 | 10% |
https://media.giphy.com/media/L4Tt0ofxExiAXYNdgv/giphy.gif
author | stellabelle |
---|---|
permlink | re-someguy123-qe3g4c |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-26 20:41:00 |
last_update | 2020-07-26 20:41:00 |
depth | 1 |
children | 0 |
last_payout | 2020-08-02 20:41:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 516,061,669,130,124 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,734,236 |
net_rshares | 0 |
avatar gif looks good on your post. thanks again!
author | stellabelle |
---|---|
permlink | re-someguy123-qe40q6 |
category | security |
json_metadata | {"tags":["security"],"app":"peakd/2020.07.1"} |
created | 2020-07-27 04:06:06 |
last_update | 2020-07-27 04:06:06 |
depth | 1 |
children | 0 |
last_payout | 2020-08-03 04:06:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.254 HBD |
curator_payout_value | 0.254 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 516,061,669,130,124 |
root_title | "Using Trezor Hardware Wallet as a hardware SSH key on Mac OSX" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,739,423 |
net_rshares | 1,928,976,873,778 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
someguy123 | 0 | 1,928,976,873,778 | 100% |