Skip to main content

DO NOT WORRY, YOUR PASSWORDS ARE NOT STORED

   


      A technique called 'hashing' is used here.  Let us see what it is ?
     Below, I have given four passwords -deliberately simple.

      1. 7168
      2. 1234
      3. 5555
      4. 7613

     Since there are a total of four passwords.  Divide each passwords by 4.

1. 7168/4 =1792; reminder 0
2. 1234/4 =308 ; reminder 2
3. 5555/4 = 1388; reminder 3
4. 7613/4 =1903; reminder 1

     The reminders are the keys or fingerprint or message digest.
     The websites only stores these keys.  The 'hashing' procedure may be kept secret.  The keys are normally of same length-like one digit.
     When you type your password, the password is converted into the key using 'hashing'.  The generated 'key' and the stored key in the website are compared.  If they match exactly, you are allowed entry.  If a site follows a good hashing algorithm, your passwords need not be saved.

(Note:  We may get same key for two or more passwords called collision.  A good algorithm avoids collisions).

     In practice, mathematically complicated hashing algorthms are used.  They are called MD5 and SHA(secured hashing algorithm).  One cannot reverse engineer the 'hashing'.  That is, you cannot find message (passwords) from message digest, that is the main strength of 'hashing'

     There is another use for hash keys.  You can use them as index to store data in a data base.

     In our example; the data 7168 can be stored in the location '0'[ key]; 7613 can be stored in the location '1' and so on.  Now the data can be easily searched and retrieved fast.

     Digital signatures are also verified in this way.  There are websites which yield message digest for your messages using MD5 or  SHA.    
                     -------------------------------------------------  

Comments

Popular posts from this blog

THE EARTH, A SUPER ORGANISM

     JOIN MY COURSE: "Become a programmer in a day with python"       A man called 'love lock' (what a name) proposed a theory called Gaia theory, named after Greek Goddess.      It says, "Earth is a self-regulating organism like a human being.  The organic life in it interacts with in-organic matter and maintains atmosphere, temperature and environment".  Hence the earth is still suitable for the life to thrive.      Imagine, in a particular place, there are lot of flowers.  Some flowers are white and some are darkly coloured.  We know, white reflects light and heat while dark absorbs the same.  White flowers can thrive in hot climate.  But dark flowers requires cold climate.  The absorption and reflection balances and the environment reaches average, warm temperature at which both the flowers can co-exist.  This is the essence of "Gaia" theory.      On our earth, ...

DISORDER IS THE "ORDER OF THE DAY"

         Imagine a balloon full of air.  The air molecules are moving randomly inside the balloon.  Let us pierce the balloon with a pin.  The air rushes out.  Why should not the air molecules stay inside the balloon safely and ignore the little hole?  That is not the way the world works.  The molecules always "want to occupy as many states as possible".  Hence the air goes out in the open to occupy more volume.   The things always goes into disorder (entropy) and the disorder increases with time.  The above statement is what we call "second law of thermodynamics".      Consider a cup of coffee on the table. Suppose the heat from entire room flows to your cup of coffee, the coffee will boil and the rest of the room will freeze.  Freezing means bringing things to order and arrangement.  It violates the second law.  Hence it will never happen.  Hence heat must flow from high ...

CASINO'S GAME

           Let us find out how the casino survives with mathematics.      Say, your friend invite you for a game of dice.  You must bet (wager) 2 dollars.  If you roll 'six' you will get back 8 dollars.  The game will go on for 30 rounds.  All sounds good.      The probability of rolling 'six' is 1/6.  Since the game will be played for 30 times, the 'expected win' is 30*1/6 = 5.  That is, you are expected to win 5 rounds out of 30.  Hence your gain will be 5 * 8 =40 dollars.  ok.  This also implies that you will loose 25 rounds.  Hence your loss will be 25*2 =50 dollars.  Your net gain will be gain-less = 40-50 = -10 dollars. For 30 rounds, the loss is -10 dollars, Hence, for one round =-10/30 = -1/3 dollars.  There will be a loss of -1/3 or 0.33 dollars per round.  It is not a fair game.     Let us make a simple formula to calculate  'Pa...