I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1... by nolnocluap

View this thread on steempeak.com
· @nolnocluap ·
$20.82
I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1...
<h2>Introduction</h2>
I started writing this post thinking that I'd make it a bit of a brain dump of my recent decision to buy a hardware wallet. It quickly morphed into a somewhat more in-depth discussion of asymmetric cryptography so I decided to break the post into parts. This is part 1.

<h2>Credit</h2>
Before moving on I want to give _massive credit_ to "Plany" on _blogs.msdn.microsoft.com_ for the Crypto Primer video found [here](https://blogs.msdn.microsoft.com/plankytronixx/2010/10/22/crypto-primer-understanding-encryption-publicprivate-key-signatures-and-certificates/) as this is what the information below is based on with annotations from me.

<h2>Motivation</h2>
I'd not heard of KeepKey prior the two comprehensive posts made by @cali-girl about a month ago [here](https://steemit.com/bitcoin/@cali-girl/making-progress-on-the-financial-front-hardware-wallet-and-gold-coin) and [here](https://steemit.com/bitcoin/@cali-girl/why-i-chose-to-purchase-the-keepkey-hardware-wallet). Since then, the idea of getting one for myself has been floating around in my head almost continuously. Many here however may not yet be quite sure about what hardware wallets are, what they have to do with private keys and why they're something worth considering so let's back up a little...

<center>
![secure.jpg](https://steemitimages.com/DQmRPTV3Eb84xF1FT2YyWsPgmRGERQAs5xGqfPme4D8bBT9/secure.jpg)
_securestate.com_
</center>

<h2>Crypto Primer</h2>

It all at the end of the day comes down to the importance of protecting your private keys. Private keys are essentially just numbers. They're one half of a pair of numbers actually which you've probably heard of, the other referred to as the public key. These two numbers together form the backbone of how Public Key Cryptography works. These two numbers share an interesting property, that being that information encrypted with one of the numbers can only be decrypted with the other. That's why the scheme is often referred to a _asymmetric cryptography_. It actually doesn't matter which key is used for the encryption and which for the decryption (and hence which is public and which is private) but for simplicity sake we pick one, call it private and from there forward keep it that way. 

Signing is the act of applying a cryptographic algorithm using a private key. The act of decrypting that message successfully with the corresponding public key hence provides authentication (if a message was able to be decrypted with a public key then the claimed owner of the private key must have genuinely encrypted it). This is the process by which the X509 PKI system works. It's all very seamless and neat but can cause a great degree of confusion. At the end of the day all you need to know really is that the private key is used for _"locking"_ a secret and the public key is used for _"unlocking"_ a secret and visa versa. Use the wrong key to unlock a secret and you don't get very far. Importantly, if I used my private key to encrypt a secret and try to claim that the secret is from you, when someone decrypts the message with your public key (as they would if they think the message is from you) they'll get rubbish as my private key's unrelated to your public key. Only your private key and public key are related. 

_Clear as mud?_

For those who are interested in more detail, I highly recommend [this walk through video](https://blogs.msdn.microsoft.com/plankytronixx/2013/06/12/video-crypto-primer-understanding-cryptography-certificates-publicprivate-key-and-digital-signatures/) which is the best explanation of cryptography and digital signatures I've come across in my career to date and I'll borrow a few points from it here to summarize for those who find it a bit too deep.

<h2>Public Private Key Algorithm Mathematics</h2>
Around 1976, three mathematicians named Ron Rivest, Adi Shamir and Leonard Adelman invented (or rather reinvented what Clifford Cocks at GCHQ had come up with secretly about 3 years earlier) the PKI algorithm. The three went on to founder the security company RSA. 

<center>
![RSA.jpg](https://steemitimages.com/DQmStFzbZrPpEpt76aAVRHDRFStEUuXKjkQh6NyD4CAH1k2/RSA.jpg)
_Rivest, Shamir & Adelman thanks to ams.org_
</center>

Let's look at an example. First a public key is generated. We pick 2 random giant prime numbers. Let's start small for simplicity. `p = 17` and `q = 11`. `p` and `q` here simply designate the numbers, they don't mean anything semantically. Let's multiply them together to get `187`. We then pick a second prime number, `e = 7` say.  That's our public key, comprised of two numbers. Now we use the public key to generate the private key (and keep in mind that none of this is exposed to the user really, this is for interest's sake). We run it through the algorithm using modular arithmetic . With a private key represented by `d` we have 
`e * d = 1(mod(p-1)*(q-1))`
`7 * d = 1(mod 16 * 10)`
`7 * d = 1(mod 160)`
`d = 23` (the private key in this example)

So let's send a message! Let's send a single character to keep things simple. Let's send `x` which in ASCII is 88. In this example we are sending a message using someone else's key pair and hence we only know the public key's two numbers, remember these are `n = 187` and `e = 7`. The recipient of our message will use their matching private key (which we obviously don't know) to decrypt our cheeky little `x` message. Running our message `88` through the simple algorithm that follows produces our cipher-text
`cipher-text = 88^e (mod n)`
`cipher-text = 88^7 (mod 187)`
`cipher-text = 11`

We send `11` as our encrypted data. 

The other end has the private key which in our example is `d = 23`so it uses that to decrypt as follows
`plain-text = cipher-text ^ d (mod n)`
`plain-text = 11 ^ 23 (mod 187)`
`plain-text = 88`

In reality, the prime numbers involved are massive.

<h2>Crypto Primer TLDR; Summary</h2>

* In cryptography, it's not the encryption algorithm that's kept secret. It's the keys (particular numbers) that are used in the algorithm.
* Further more, a good encryption algorithm means that even if the algorithm and the cipher text itself are known, the plain text data is still kept secret. Sounds odd right? Given the answer and the equation, you'd think you could quickly get the input? `x + 5 = 20`, you'd figure out x to be 15 without much drama, right?
* Crypto algorithms use special _"one way functions"_ that prohibit the above, that is it's not possible to get to the input value knowing the output value.
* There are two main types of algorithms, symmetrical and asymmetrical (that I mentioned above). Symmetric algorithms use the same key for both encryption and decryption. Asymmetric algorithms (such as public-private key cryptography) use one key for encryption and a different (yet mathematically related) key for decryption.
* The strength of public private key encryption lays in the fact that mathematically there is no pattern to a series of prime numbers other than that they're prime and so they are unable to be predicted via an algorithm (yet!)
* Encryption has two inputs, plain text and the key. It as one output, cipher text. Decryption has two inputs, cipher text and the key. It has one output, plain text.
* Modular arithmetic gives us a means of implementing one way functions for cryptography. A simple example is that if you add 5 hours to 9am on a clock face, you get 2pm. Written down this would look like `9 + 5 = 2` This is an example of modular arithmetic where the modulus is 12 so we could also write `9 + 5 = 2 (mod 12)`. The key here is that there's no way to know what the starting time was given that you know the answer, right? If I said I finished writing this Steemit post at 2pm, and it took 5 hours, you only know what time I started because you know that there are 12 hours on a clock face. 24hr time is an example without the mod operation.
* Modular arithmetic gives a function a wonderful property, unpredictability.
* Key pairs are generated together as they are mathematically related. The public key is broadcast such that anyone can use it to decrypt messages that you encrypt. The private key is kept secret.
* This process works for bidirectional traffic too. Someone wanting to send a message to you encrypts it with your public key which everyone has and can be guaranteed that only you can decrypt it with your private key. This is where the mathematical relationship between the keys comes into play. Whether it's encryption or decryption, only you can form one side of the transaction with your private key for either inbound or outbound data.
* In reality, many web servers will go as far as using special tamper resistant hardware stores for protecting private SSL keys (starting to sound a little like a crypto hardware wallet?)

<h2>Conclusion</h2>
Hopefully this post has helped to demystify the nature of public private key encryption and it is a stepping stone towards imparting the importance of keeping private keys safe in something like a hardware wallet. I've really only scratched the surface here. That later part I'll address in a subsequent post.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 16 others
properties (23)
post_id14,273,088
authornolnocluap
permlinki-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet
categorycryptocurrency
json_metadata"{"format": "markdown", "links": ["https://blogs.msdn.microsoft.com/plankytronixx/2010/10/22/crypto-primer-understanding-encryption-publicprivate-key-signatures-and-certificates/", "https://steemit.com/bitcoin/@cali-girl/making-progress-on-the-financial-front-hardware-wallet-and-gold-coin", "https://steemit.com/bitcoin/@cali-girl/why-i-chose-to-purchase-the-keepkey-hardware-wallet", "https://blogs.msdn.microsoft.com/plankytronixx/2013/06/12/video-crypto-primer-understanding-cryptography-certificates-publicprivate-key-and-digital-signatures/"], "app": "steemit/0.1", "tags": ["cryptocurrency", "bitcoin", "ethereum", "money", "blockchain"], "users": ["cali-girl"], "image": ["https://steemitimages.com/DQmRPTV3Eb84xF1FT2YyWsPgmRGERQAs5xGqfPme4D8bBT9/secure.jpg"]}"
created2017-10-01 21:49:45
last_update2017-10-01 21:49:45
depth0
children14
net_rshares7,507,059,758,994
last_payout2017-10-08 21:49:45
cashout_time1969-12-31 23:59:59
total_payout_value17.144 SBD
curator_payout_value3.677 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9,132
author_reputation41,051,906,712,730
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (80)
@hotsauceislethal ·
TLDR Version:
A private key is the literal key to accessing your private wallet. It is so secure that not even the CIA can hack it! (Or can they?)

Custodial wallets such as Coinbase hold the private keys for you.
properties (22)
post_id14,273,841
authorhotsauceislethal
permlinkre-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t220543317z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-01 22:05:51
last_update2017-10-01 22:05:51
depth1
children1
net_rshares0
last_payout2017-10-08 22:05:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length213
author_reputation25,902,002,045,313
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nolnocluap ·
Not until what's known as the doomsday scenario arrives, when an algorithm for predicting prime numbers efficiently is derived. Hence all the talk about governments wanting to introduce backdoors.

Yes holding your private keys is critical and as you say custodial wallets fail in this respect. More to come in part 2! Thanks for the concise TLDR 😉
👍  
properties (23)
post_id14,274,111
authornolnocluap
permlinkre-hotsauceislethal-re-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t221129803z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-01 22:11:33
last_update2017-10-01 22:11:33
depth2
children0
net_rshares6,437,932,521
last_payout2017-10-08 22:11:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length348
author_reputation41,051,906,712,730
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@seajai ·
Wow, this is very in depth. Great post!
properties (22)
post_id14,274,484
authorseajai
permlinkre-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t221841252z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-01 22:18:42
last_update2017-10-01 22:18:42
depth1
children1
net_rshares0
last_payout2017-10-08 22:18:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length39
author_reputation784,231,792,440
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nolnocluap ·
Thanks kindly @seajai. It takes a while to piece a post like this together so I appreciate the thumbs up!
👍  
properties (23)
post_id14,276,550
authornolnocluap
permlinkre-seajai-re-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t225842385z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "users": ["seajai"], "tags": ["cryptocurrency"]}"
created2017-10-01 22:58:45
last_update2017-10-01 22:58:45
depth2
children0
net_rshares5,037,194,352
last_payout2017-10-08 22:58:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length105
author_reputation41,051,906,712,730
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@plumey ·
I use the Ledger Nano S hardware wallets. I bought a twin pack which are clones of each other so I always have a back up in case something happens to the main one.
properties (22)
post_id14,275,162
authorplumey
permlinkre-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t223136051z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-01 22:31:48
last_update2017-10-01 22:31:48
depth1
children3
net_rshares0
last_payout2017-10-08 22:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length163
author_reputation3,821,397,562,236
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nolnocluap ·
A neat idea @plumey, I may reference what you've done in my part 2 if that's OK with you...
properties (22)
post_id14,276,385
authornolnocluap
permlinkre-plumey-re-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t225520100z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "users": ["plumey"], "tags": ["cryptocurrency"]}"
created2017-10-01 22:55:21
last_update2017-10-01 22:55:21
depth2
children2
net_rshares0
last_payout2017-10-08 22:55:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length91
author_reputation41,051,906,712,730
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@plumey ·
$0.05
Go for it. Anything to help out.
👍  
properties (23)
post_id14,277,915
authorplumey
permlinkre-nolnocluap-re-plumey-re-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t233231338z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-01 23:32:42
last_update2017-10-01 23:32:42
depth3
children1
net_rshares18,887,564,637
last_payout2017-10-08 23:32:42
cashout_time1969-12-31 23:59:59
total_payout_value0.039 SBD
curator_payout_value0.011 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length32
author_reputation3,821,397,562,236
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@minnowsupport ·
<p>Congratulations!  This post has been upvoted from the communal account, @minnowsupport, by nolnocluap from the Minnow Support Project.  It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, someguy123, neoxian, followbtcnews/crimsonclad, and netuoso.  The goal is to help Steemit grow by supporting Minnows and creating a social network.  Please find us in the <a href="https://discord.gg/HYj4yvw">Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>.  It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p>
properties (22)
post_id14,276,602
authorminnowsupport
permlinkre-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t225952475z
categorycryptocurrency
json_metadata"{"app": "cosgrove/0.0.1rc9", "tags": ["cryptocurrency"]}"
created2017-10-01 22:59:51
last_update2017-10-01 22:59:51
depth1
children0
net_rshares0
last_payout2017-10-08 22:59:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length611
author_reputation104,981,098,086,561
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nutela ·
Wow great crypro primer! Simpler than I had during the crypto Mathclass at College! But I don't get `e * d = 1(mod(p-1)*(q-1))` 

10mod9 is 1 but 1modx is always 1 no?
properties (22)
post_id14,276,750
authornutela
permlinkre-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171001t230357176z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-01 23:03:48
last_update2017-10-01 23:03:48
depth1
children2
net_rshares0
last_payout2017-10-08 23:03:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length167
author_reputation12,751,332,063,284
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nolnocluap ·
Hey thanks @nutela. I believe your question relates to the modular multiplicative inverse. There are a few sites that cover this notation better that I could at the moment including [here](http://www.geeksforgeeks.org/multiplicative-inverse-under-modulo-m/) & [here](https://crypto.stackexchange.com/questions/1713/calculating-private-keys-in-the-rsa-cryptosystem). Hope that helps!
👍  
properties (23)
post_id14,294,956
authornolnocluap
permlinkre-nutela-re-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171002t045718880z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "users": ["nutela"], "links": ["http://www.geeksforgeeks.org/multiplicative-inverse-under-modulo-m/", "https://crypto.stackexchange.com/questions/1713/calculating-private-keys-in-the-rsa-cryptosystem"], "tags": ["cryptocurrency"]}"
created2017-10-02 04:57:21
last_update2017-10-02 04:57:21
depth2
children1
net_rshares3,378,027,975
last_payout2017-10-09 04:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length382
author_reputation41,051,906,712,730
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@nutela ·
Thanks I thought it looked like you _divided_ it by `mod` or something :)
properties (22)
post_id14,308,525
authornutela
permlinkre-nolnocluap-re-nutela-re-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171002t090302415z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-02 09:02:48
last_update2017-10-02 09:02:48
depth3
children0
net_rshares0
last_payout2017-10-09 09:02:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length73
author_reputation12,751,332,063,284
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cali-girl ·
$0.03
Glad I could be influential! :D
👍  
properties (23)
post_id14,445,357
authorcali-girl
permlinkre-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171003t213048796z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-03 21:30:57
last_update2017-10-03 21:30:57
depth1
children1
net_rshares11,304,067,946
last_payout2017-10-10 21:30:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 SBD
curator_payout_value0.006 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length31
author_reputation6,830,373,373,021
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@nolnocluap ·
👍
properties (22)
post_id14,446,910
authornolnocluap
permlinkre-cali-girl-re-nolnocluap-i-just-purchased-a-keepkey-hardware-wallet-so-what-s-all-this-cryptography-stuff-what-s-a-private-key-what-s-a-hardware-wallet-20171003t215730174z
categorycryptocurrency
json_metadata"{"app": "steemit/0.1", "tags": ["cryptocurrency"]}"
created2017-10-03 21:57:33
last_update2017-10-03 21:57:33
depth2
children0
net_rshares0
last_payout2017-10-10 21:57:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1
author_reputation41,051,906,712,730
root_title"I Just Purchased A KeepKey Hardware Wallet: So What's All This Cryptography Stuff, What's A Private Key, What's A Hardware Wallet And Why Am I Excited About What It Will Mean For Me? A Brief Crypto Primer & Some History Part 1..."
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000