create account

Passwords and Encryption - From Classical to Quantum by event-horizon

View this thread on: hive.blogpeakd.comecency.com
· @event-horizon ·
$68.62
Passwords and Encryption - From Classical to Quantum
<div class = "pull-left">
https://cdn.steemitimages.com/DQmVwtgjYQQe6RxbTKvzfsGWZqK5f9kU7KePL4gMLD8XBuT/computer-1294045_960_720.png
<center><sub><a href ="https://pixabay.com/en/computer-encrypt-encryption-1294045/">Pixabay - [CCO Creative Commons]</a></sub></center></div>
Recently, Twitter asked its users to change their passwords as an extra precaution. Not because there was a breach into their database but because they found a bug. The passwords were stored as plain-text in the database as a result of a bug, which is a very naive and insecure way of storing.

For those who don't know, Cryptography is the study and procedure of the techniques used to establish a secure communication between two parties by hiding the data from third party.
Passwords are kind of an applicaiton of Cryptography to secure sensitive data and information.
I won't dig deeper into the definition and introduction, let's come to the point.

## How passwords are stored then?

When you sign up for a website, your password is stored in its database. What could be the possible way of storing passwords of all the users?
One way is to store, just the plain-text, like this:

| Usernames | Passwords | 
| -------- | -------- | 
| Alice    | abcd123     |
|Bob | spookyspy|

If a hacker gets hold of this database, then all the passwords are compromised too.
That's why we always use hash tables for storing passwords.

### What are Hash tables?

Hash tables are a data structure widely used in computer programming. 
There are hash functions which are applied on the usernames or on the passwords to convert them into another set of characters which are completely non-decipherable for hackers.

Now let's store Alice and Bob's password using a hash function.

**Hash function:** I am taking the ASCII value of each character in the password and multiplying it with the position of that character and then adding all the values. Then take modulo of the result with any random prime number, let's say 89.

**<center> abcd123 = (97x1)+(98x2)+(99x3)+(100x4)+                        (49x5)+(50x6)+(51x7)<br>
                 = 1892 mod 89
                 = 23. </center>**
                 

Similary for other password:

**<center> spookyspy = (115x1)+(112x2)+(111x3)+                       (111x4)+(107x5)+(121x6)+(115x7)+(112x8)+(121x9)<br>
                 = 5167 mod 89
                 = 5. </center>**
                 
Now the passwords are hashed and can be stored like this:

| Usernames | Passwords |
| -------- | -------- | 
| Alice     | 23     | 
|Bob| 5|

If a hacker gets hold of this database and he knows the hash function, he still won't be able to find the actual password because hashing works one way only. Hacker can see the password 23 and 5 and if he applies hash function to these then he will get an entirely different result.

How the actual user gets his password verified, when he tries to login?
Alice will enter <em>abcd123</em> and database has stored 23 for her. But they don't match.
What happens here is that, every attempted password along with the username "Alice" is hashed first with the above used hashed function and if the result matches the password(which is already hashed with the same hash function) stored in database, then only the user is allowed to login.

There is one other way; We can hash usernames with the same hashed function and get different indices for every user to store their password.

**Alice = (65x1)+(108x2)+(105X3)+(99x4)+(101x5) 
      = 1497 mod 89
      = 73
Bob = (66x1)+(111x2)+(98x3)
    = 582 mod 89
    = 48**


| Usernames | Passwords | 
| -------- | -------- | 
| 0     |     | 
| 1 |  |
| .. |
| 48 | spookyspy |
| .. | |
|73 | abcd123 |

If a hacker get holds of this type of database then he won't know who is 48 and who is 73. Knowing hash function won't help much until he also knows which username's password he wants. 
To make it more secure, passwords should be hashed too like discussed before this.

Every secure internet service or website save your passwords with this technique. 

But hackers are also in the game with us. They use [rainbow tables](https://en.wikipedia.org/wiki/Rainbow_table) (precomputed tables to reverse the hash funcitons) to crack the passwords. Acutually rainbow tables were contructed by the companies as a backdoor, in case of forgotten passwords or other emergencies.

To resolve this issue we add salt to the hash. Salt is any random set of characters attached to the hashed password to make it more secure. Till now rainbow tables can't decipher the Salts because they are already taking too much storage and adding Salts would increase the combinations exponentially again. 

By now, you must have realised that we are just making it diffiult for the hackers to crack the passwords, we are not making it impossible. 
Brute Force can still be used for cracking, that is checking every possible combination of the password in rainbow tables. Addition of Salts have fetched us some time till Quantum Computers are in function. Because Salts too merely increase the possibilities as mentioned, which are hard to compute for classical computers. When Quantum Computers will actually come, then it will be a matter of seconds to break codes.
Till then you can have a good nights sleep.
<hr>

# Encryption

Apart from securing our personal data, we want secure communication as well. An encrypted communication, to be more precise. I have discussed below the types:
1. Assymetric 
2. Symmetric

### Assymetric Encryption:

Assymetric Encryption which involves with public and privat keys can be best explained by this famous padlock analogy:
<div class = "pull-left">
https://cdn.steemitimages.com/DQmfUJNCvhGzwfXNPHx6x5GBbBCDo6ukSYBiCB3KiSyT4m1/525px-Public_key_encryption.svg.png
<center><sub><a href = "https://commons.wikimedia.org/wiki/File:Public_key_encryption.svg"> Wikimedia Commons [public domain] </a></sub></center>
</div>
Alice and Bob, both have padlocks and their keys.
Alice wants to send a message to Bob. She will ask for Bob's padlock. On the way, the unlocked padlock could be locked by anyone but it doesn't matter. When the unlocked padlock reaches Alice, she locks the message with Bob's padlock and send him back. Now own the way, nobody can unlock that padlock because only Bob has its key. When Bob will get the message, securely locked with his padlock then he can open it with his key.

**Public key was the padlock and private key was the key itself. Both are linked to each other. If one get holds of a public key, he has to derive private key as well to unveil the message.**

[RSA](https://en.wikipedia.org/wiki/RSA_(cryptosystem)) algorithm is used to implement such procedure.

### Symmetric Encryption:

The simplest explanation would be; when both the parties have the same key to encrypt or decrypt messages.
It is faster than Assymetric Encryption but it has a drawback; the distribution of the key. Unless both parties have met in person and decided upon a shared key. Otherwise, to send the key on internet would again make it vulnerable to hackers.

[AES](https://en.wikipedia.org/wiki/Advanced_Encryption_Standard) algorithm is used to implement it.

<hr>

Let's take an example of **Whatsapp** which is said to use both techniques taking benefit from the speciality of both.

Alice and Bob are in modern world now. Alice wants to send a message to Bob on whatsapp.
Now according to ethics, as a one-to-one conversation, there shouldn't be any third person reading that message. Not even the Whatsapp company. Doesn't matter, what is the nature of that message, nobody wants their personal chats to be read by anyone.
A session should be established first. For that Alice will request the server, for Bob' **public keys** which she will get on the insecure channel. But that doesn't matter, alone public key won't do good to anybody. 
Now that she has his public key and hers too, she will now generate a **private message key** using those keys and send it back to Bob encrypted with his public key.
**Both have safely got a private message key via Assymetric Encryption.**
**Now they can send messages to each other encrypted with the same private message key. 
This is symmetric encryption now in work which is faster as well.**

## How to check the connection is secure on Whatsapp?

The above mentioned proceudre was a behind the scene process.
To make sure, Alice and Bob has secure channel for conversation, they can check their mobile phones too. 
In the chat window with Bob , Alice opens the option panel at the top right corner and clicks "view contact". 
There she taps, "Encryption" and can see a 60-digit long number and a QR code. 
She can send Bob that number and if it matches the number written at Bob's end on the similar window then that means they have a secure connection.
Or if they are sitting together, either can scan the QR code of the other and if it shows the Green Tick that means the connection is secure or encrypted.

<hr>

## Hole in Whatsapp Group Chat Security

I am sure, you know how the Whatsapp group chat feature works. When a group member adds or removes members, everyone gets notified. But the drawback is that this modification in group chat is not [end-to-end encrypted](https://en.wikipedia.org/wiki/End-to-end_encryption) (only users can read messages, not even server). If a whatsapp server gets compromised, hacker can easily add himself in the group and forge messages and modifications in the group. 
The researchers have proposed a solution to that problem. That the power of adding and removing members should soley remain with the admin, not even to the whatsapp server. The hacker would need to get verified by the group admin to invade, which would be impossible then.
But Whatsapp hasn't resolved this issue still.
## Is there any threat to Current Encryption Techniques?

Algorithms like AES (Advanced Encryption Standard) ) and RSA are used to generate keys for current encryption methods. These keys are way to large to be guessed by today's computers. 
Yeah, I'm talking the same thing again. Quantum Computers will be able to guess the correct keys in just seconds.
Again the whole Crypto world would collapse.

**<center>No secure passwords and no secure means of communication, in short, no privacy.</center>**

<hr>

## Quantum Cryptography

Quantum Computing has given us enough tough time before actually coming into our lives. But it also provides us a solution to our issues. 
**<center>Let's beat Quantum attacks with Quantum Mechanics ;-)</center>**

Yeah, I am talking about Quantum Cryptography.
**<center>If Maths is decipherable then Physics can't be. ;-)</center>**

Quantum Key Distribution helps to create a key using the principles of quantum mechanics. This has already been explained by some great contributors, I am giving a simplified version of the picture for who haven't read it before.
* Alice sends photons to Bob through a light source.
* Single photon can be represented by a qubit.
* She has four sets of polarizers i.e, Horizontal or Vertical and Diagonal.
Horizontal H is assigned value 0.
Vertical V is assigneld value 1.
Diagonal DL at 45<sup>o</sup> left is 0.
Diagonal DR at 45<sup>o</sup> right is 1.

<div class = "pull-left">
https://cdn.steemitimages.com/DQmRkEKL864QTqvAzZWm24TT1YULuEUyBdc1dPauxHWnW1Y/800px-B92_protocol_quantum_key_distribution.svg.png
<center><sub><a href = "https://commons.wikimedia.org/wiki/File:B92_protocol_quantum_key_distribution.svg"> Wikimedia Commons [CC-BY-SA 3.0] </a></sub></center>
</div>

* On the other end, Bob has two beam spiltters (horizontal or vertical and diagonal) and two photon detectors.

* If horizontally polarized photon is sent by Alice, passes through Horizontal beams splitter, it remains horizontal. Same happens with others.

* Now Bob will randomly choose beam splitter for each photon and will later tell Alice, in which order he used the splitters.

* Alice will then tell him which photons he guessed correctly. 

* The correct photons which are represnting a number, will now be the encryption key.



| Alice | H , 0 | DL, 0 | DR, 1|V, 1 |
| -------- | -------- | -------- | ---- | ---- |
| Bob    | H    | V     | DR |DL |
|Bob's Measurement| 0 | 0 | 1 | 0 |
|Key|0|-|1|-|


Hackers interference would be easily detected in this phenomenon, because qubits will change, when hackers will try to measure the values. But in an experiment, hackers have managed to eavesdrop with minimum turbulance in qubits which wasn't detected easily.
That issue was resolved too by using the concepts of quantum entanglement. (I will explain it another post soon.)

Another limitation was the constraint on distance. This technique couldn't work at larger distances.
But a recent breakthrough related to the discovery of space photons has solved this issue too. The idea behind is that secure keys can now be generated using photons, between users thousands of miles apart with the help of satellites.

I am stopping here now because this will generate another discussion and we have already discussed too many concepts in this post.


**<center>Enjoy a world of privacy ;-)</center>**

<hr>
<center>We have talked about Quantum Encryption, What about Quantum Passwords?</center>
<hr>


##### References and Further Reading 
###### 1. [Whatsapp Security White paper](https://www.documentcloud.org/documents/2806301-WhatsApp-Security-Whitepaper-1.html)
###### 2. [Cryptography in Banking Industry White Paper](https://www.researchgate.net/profile/Arpan_Kar/publication/269405090_Cryptography_in_the_Banking_Industry/links/548aa9990cf2d1800d7ab800/Cryptography-in-the-Banking-Industry.pdf?origin=publication_detail)
###### 3. [End-to-End Security of Group Chats](https://eprint.iacr.org/2017/713.pdf)
###### 4. [Quantum Computing taking over Today's Encryption](http://www.ciena.com/insights/articles/What-Happens-When-Quantum-Physics-Meets-Cryptography.html)

###### 5. [Space Photons for Quantum Cryptography](https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.120.030501)

###### 6. [Hash Tables and Passwords](http://www.cs.uregina.ca/Links/class-info/210/Hash/)

Note: I have left some questions and details unanswered on purpose in the end, that to be discussed in next post.
<hr>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 158 others
👎  
properties (23)
authorevent-horizon
permlinkpasswords-and-encryption-from-classical-to-quantum
categorysteemstem
json_metadata{"tags":["steemstem","technology","encryption","passwords"],"image":["https://cdn.steemitimages.com/DQmVwtgjYQQe6RxbTKvzfsGWZqK5f9kU7KePL4gMLD8XBuT/computer-1294045_960_720.png","https://cdn.steemitimages.com/DQmfUJNCvhGzwfXNPHx6x5GBbBCDo6ukSYBiCB3KiSyT4m1/525px-Public_key_encryption.svg.png","https://cdn.steemitimages.com/DQmRkEKL864QTqvAzZWm24TT1YULuEUyBdc1dPauxHWnW1Y/800px-B92_protocol_quantum_key_distribution.svg.png"],"links":["https://pixabay.com/en/computer-encrypt-encryption-1294045/","https://en.wikipedia.org/wiki/Rainbow_table","https://commons.wikimedia.org/wiki/File:Public_key_encryption.svg","https://en.wikipedia.org/wiki/RSA_(cryptosystem)","https://en.wikipedia.org/wiki/Advanced_Encryption_Standard","https://en.wikipedia.org/wiki/End-to-end_encryption","https://commons.wikimedia.org/wiki/File:B92_protocol_quantum_key_distribution.svg","https://www.documentcloud.org/documents/2806301-WhatsApp-Security-Whitepaper-1.html","https://www.researchgate.net/profile/Arpan_Kar/publication/269405090_Cryptography_in_the_Banking_Industry/links/548aa9990cf2d1800d7ab800/Cryptography-in-the-Banking-Industry.pdf?origin=publication_detail","https://eprint.iacr.org/2017/713.pdf","http://www.ciena.com/insights/articles/What-Happens-When-Quantum-Physics-Meets-Cryptography.html","https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.120.030501","http://www.cs.uregina.ca/Links/class-info/210/Hash/"],"app":"steemit/0.1","format":"markdown"}
created2018-05-28 11:56:48
last_update2018-05-28 11:56:48
depth0
children21
last_payout2018-06-04 11:56:48
cashout_time1969-12-31 23:59:59
total_payout_value51.838 HBD
curator_payout_value16.786 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14,278
author_reputation5,759,852,439,635
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,098,345
net_rshares16,821,797,089,335
author_curate_reward""
vote details (223)
@agbona ·
It is quite fascinating that these all the activities that go on behind the scenes when we log into websites and social media accounts. 

Quick question, is it wise to make use of one password recurrently for different platforms, like 

>Alice	- abcd123

For Facebook, Instagram and Gmail
👍  
properties (23)
authoragbona
permlinkre-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t105436376z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 10:54:24
last_update2018-05-30 10:54:24
depth1
children2
last_payout2018-06-06 10:54:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length288
author_reputation13,458,678,784,394
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,423,023
net_rshares546,278,258
author_curate_reward""
vote details (1)
@event-horizon · (edited)
Ofcourse not. Although It's easier to remember but different passwords are better,  hard to recall ofcourse but if someone is trying to hack your accounts, he/she just needs one password and tada.

Edited to add: longer passwords like you stated may stand a chance, if someone is not persistent to hack it. 😀
properties (22)
authorevent-horizon
permlinkre-agbona-re-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t125405994z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 12:54:09
last_update2018-05-30 12:59:24
depth2
children1
last_payout2018-06-06 12:54:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length308
author_reputation5,759,852,439,635
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,435,752
net_rshares0
@agbona ·
Alright.

Thanks for the feedback, and again, this is a wonderful post!
properties (22)
authoragbona
permlinkre-event-horizon-re-agbona-re-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180531t031719708z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-31 03:17:06
last_update2018-05-31 03:17:06
depth3
children0
last_payout2018-06-07 03:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation13,458,678,784,394
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,534,743
net_rshares0
@bachuslib ·
I want to point out how important it is to have unique passwords. Sure something like qwerty or 12345 or simple words are easy to remember but they are also easier to crack with the use of rainbow tables. Even with the use of salts that danger cannot be eliminated completely. It really depends where salt algorithm splits your password.

I enjoyed your post. You explained it in easy to understand way :)
👍  
properties (23)
authorbachuslib
permlinkre-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180529t083706830z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-29 08:37:06
last_update2018-05-29 08:37:06
depth1
children1
last_payout2018-06-05 08:37:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length405
author_reputation1,954,318,455,172
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,242,690
net_rshares614,953,239
author_curate_reward""
vote details (1)
@event-horizon · (edited)
In my opinion, uniqueness of password doesn't matter much. It's the length that matters. 
We use brute force to crack passwords i.e, checking all the possible combinations. 
So if a password is long then it will take longer to crack it because the combinations which need to be applied will also increase.
Short password, doesn't matter how unique, will give less combinations to check, means less time to crack.
And about the salt part, I think one has to know exactly what the salt is to know where the split begins. Algorithm would be generic for all kind of salts. Right?  

Thanks for stopping by.
properties (22)
authorevent-horizon
permlinkre-bachuslib-re-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180529t090715772z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-29 09:07:21
last_update2018-05-29 09:09:12
depth2
children0
last_payout2018-06-05 09:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length602
author_reputation5,759,852,439,635
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,246,067
net_rshares0
@eurogee ·
So this is what goes on when we sign up in various websites...

It is fascinating to learn  of the roles of quantum cryptography and entanglement  in ensuring maximum security of  passwords and cryptographic alphanumerics (keys).

This quite a good reference material for research purposes. 

Regards 

@eurogee of @euronation community & a member of @steemstem community
properties (22)
authoreurogee
permlinkre-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t080239086z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["eurogee","euronation","steemstem"],"app":"steemit/0.1"}
created2018-05-30 08:09:00
last_update2018-05-30 08:09:00
depth1
children0
last_payout2018-06-06 08:09:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length371
author_reputation38,260,360,943,030
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,405,981
net_rshares0
@eurogee ·
So this is what goes on when we sign up in various websites...

It is fascinating to learn  of the roles of quantum cryptography and entanglement  in ensuring maximum security of  passwords and cryptographic alphanumerics (keys).

This quite a good reference material for research purposes. 

Regards 

@eurogee of @euronation community & a member of @steemstem community
👍  
properties (23)
authoreurogee
permlinkre-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t080354983z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["eurogee","euronation","steemstem"],"app":"steemit/0.1"}
created2018-05-30 08:03:54
last_update2018-05-30 08:03:54
depth1
children1
last_payout2018-06-06 08:03:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length371
author_reputation38,260,360,943,030
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,405,450
net_rshares577,494,159
author_curate_reward""
vote details (1)
@event-horizon ·
I am glad that you learn something from this article.
properties (22)
authorevent-horizon
permlinkre-eurogee-re-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t101337316z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 10:13:39
last_update2018-05-30 10:13:39
depth2
children0
last_payout2018-06-06 10:13:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation5,759,852,439,635
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,419,078
net_rshares0
@steemitboard ·
Congratulations @event-horizon! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@event-horizon) Award for the number of upvotes
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](http://steemitboard.com/@event-horizon) Award for the number of upvotes received

Click on any badge to view your Board of Honor.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

**Do not miss the [last announcement](https://steemit.com/steemitboard/@steemitboard/steemitboard-new-level-notifications) from @steemitboard!**

> Do you like **SteemitBoard**'s project? **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-event-horizon-20180530t225323000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-05-30 22:53:24
last_update2018-05-30 22:53:24
depth1
children0
last_payout2018-06-06 22:53:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,009
author_reputation38,975,615,169,260
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,509,270
net_rshares0
@steemitboard ·
Congratulations @event-horizon! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@event-horizon) Award for the number of upvotes

<sub>_Click on the badge to view your Board of Honor._</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](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-argentina-vs-croatia) from @steemitboard!**

---
**Participate in the [SteemitBoard World Cup Contest](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-collect-badges-and-win-free-sbd)!**
Collect World Cup badges and win free SBD
Support the Gold Sponsors of the contest: [@good-karma](https://v2.steemconnect.com/sign/account-witness-vote?witness=good-karma&approve=1) and [@lukestokes](https://v2.steemconnect.com/sign/account-witness-vote?witness=lukestokes.mhth&approve=1)

---

> Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-event-horizon-20180620t204450000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-06-20 20:44:48
last_update2018-06-20 20:44:48
depth1
children0
last_payout2018-06-27 20:44:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,291
author_reputation38,975,615,169,260
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,543,832
net_rshares0
@steemitboard ·
Congratulations @event-horizon! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@event-horizon) Award for the number of upvotes

<sub>_Click on the badge to view your Board of Honor._</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](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-uruguay-vs-portugal) from @steemitboard!**

---
**Participate in the [SteemitBoard World Cup Contest](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-collect-badges-and-win-free-sbd)!**
Collect World Cup badges and win free SBD
Support the Gold Sponsors of the contest: [@good-karma](https://v2.steemconnect.com/sign/account-witness-vote?witness=good-karma&approve=1) and [@lukestokes](https://v2.steemconnect.com/sign/account-witness-vote?witness=lukestokes.mhth&approve=1)

---

> Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-event-horizon-20180630t014635000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-06-30 01:46:36
last_update2018-06-30 01:46:36
depth1
children0
last_payout2018-07-07 01:46:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,290
author_reputation38,975,615,169,260
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,808,819
net_rshares0
@steemitboard ·
Congratulations @event-horizon! You have completed the following achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@event-horizon) Award for the number of upvotes

<sub>_Click on the badge to view your Board of Honor._</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 @steemitboard:**
[SteemitBoard World Cup Contest - The semi-finals are coming. Be ready!](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-the-semi-finals-are-coming-be-ready)

---
**Participate in the [SteemitBoard World Cup Contest](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-collect-badges-and-win-free-sbd)!**
Collect World Cup badges and win free SBD
Support the Gold Sponsors of the contest: [@good-karma](https://v2.steemconnect.com/sign/account-witness-vote?witness=good-karma&approve=1) and [@lukestokes](https://v2.steemconnect.com/sign/account-witness-vote?witness=lukestokes.mhth&approve=1)

---

> Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-event-horizon-20180709t082332000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-07-09 08:23:30
last_update2018-07-09 08:23:30
depth1
children0
last_payout2018-07-16 08:23:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,386
author_reputation38,975,615,169,260
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,998,882
net_rshares0
@steemitboard ·
Congratulations @event-horizon! You have completed the following achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@event-horizon) Award for the number of upvotes

<sub>_Click on the badge to view your Board of Honor._</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



> Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-event-horizon-20180730t014027000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-07-30 01:40:27
last_update2018-07-30 01:40:27
depth1
children0
last_payout2018-08-06 01:40:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length680
author_reputation38,975,615,169,260
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,452,884
net_rshares0
@steemitboard ·
Congratulations @event-horizon! You received a personal award!

<table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@event-horizon/birthday1.png</td><td>Happy Birthday! - You are on the Steem blockchain for 1 year!</td></tr></table>

<sub>_[Click here to view your Board](https://steemitboard.com/@event-horizon)_</sub>


> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-event-horizon-20190206t052144000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-02-06 05:21:45
last_update2019-02-06 05:21:45
depth1
children0
last_payout2019-02-13 05:21:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length552
author_reputation38,975,615,169,260
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,465,813
net_rshares0
@steemitboard ·
Congratulations @event-horizon! You received a personal award!

<table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@event-horizon/birthday2.png</td><td>Happy Birthday! - You are on the Steem blockchain for 2 years!</td></tr></table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@event-horizon) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=event-horizon)_</sub>


**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-a-better-rich-list-comparator"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-a-better-rich-list-comparator">SteemitBoard Ranking update - A better rich list comparator</a></td></tr></table>

###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
👍  
properties (23)
authorsteemitboard
permlinksteemitboard-notify-event-horizon-20200206t043735000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2020-02-06 04:37:36
last_update2020-02-06 04:37:36
depth1
children0
last_payout2020-02-13 04:37:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,172
author_reputation38,975,615,169,260
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id95,149,607
net_rshares38,982,458
author_curate_reward""
vote details (1)
@temitayo-pelumi ·
This is actually interesting to read. You broke down every bit of the course that anyone will understand. It is fascinating to see how things work "behind the scene".  

Great work!
properties (22)
authortemitayo-pelumi
permlinkre-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t091438596z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 09:23:54
last_update2018-05-30 09:23:54
depth1
children0
last_payout2018-06-06 09:23:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation3,862,857,831,871
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,414,047
net_rshares0
@temitayo-pelumi ·
This is actually interesting to read. You broke down every bit of the course that anyone will understand. It is fascinating to see how things work "behind the scene".  

Great work!
👍  
properties (23)
authortemitayo-pelumi
permlinkre-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t091550223z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 09:15:51
last_update2018-05-30 09:15:51
depth1
children2
last_payout2018-06-06 09:15:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation3,862,857,831,871
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,413,163
net_rshares555,643,028
author_curate_reward""
vote details (1)
@event-horizon ·
Thanks, I am happy that you like it.
properties (22)
authorevent-horizon
permlinkre-temitayo-pelumi-re-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t101510393z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 10:15:12
last_update2018-05-30 10:15:12
depth2
children1
last_payout2018-06-06 10:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation5,759,852,439,635
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,419,255
net_rshares0
@temitayo-pelumi ·
My pleasure.
properties (22)
authortemitayo-pelumi
permlinkre-event-horizon-re-temitayo-pelumi-re-event-horizon-passwords-and-encryption-from-classical-to-quantum-20180530t235638680z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 23:56:39
last_update2018-05-30 23:56:39
depth3
children0
last_payout2018-06-06 23:56:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation3,862,857,831,871
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,515,382
net_rshares0
@utopian-io ·
#### Hi @event-horizon!

Your post was upvoted by utopian.io in cooperation with steemstem - supporting knowledge, innovation and technological advancement on the Steem Blockchain.

#### Contribute to Open Source with utopian.io
Learn how to contribute on <a href="https://join.utopian.io">our website</a> and join the new open source economy.

**Want to chat? Join the Utopian Community on Discord https://discord.gg/h52nFrV**
👍  
properties (23)
authorutopian-io
permlink20180530t062600245z
categorysteemstem
json_metadata{"tags":["utopian.tip"],"app":"utopian-io"}
created2018-05-30 06:27:09
last_update2018-05-30 06:27:09
depth1
children1
last_payout2018-06-06 06:27:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length427
author_reputation152,955,367,999,756
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,395,575
net_rshares565,007,799
author_curate_reward""
vote details (1)
@event-horizon ·
Thank you for the vote.
properties (22)
authorevent-horizon
permlinkre-utopian-io-20180530t062600245z-20180530t101213355z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 10:12:15
last_update2018-05-30 10:12:15
depth2
children0
last_payout2018-06-06 10:12:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation5,759,852,439,635
root_title"Passwords and Encryption - From Classical to Quantum"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,418,941
net_rshares0