Skip to main content

what is cryptography?

what is cryptography??


Cryptography is a method of converting or protecting our data or message into secret form so that it could not be in wrong hands.The only person which has the key only can read the message.
The cryptography word is made of two words : -crypt and graphy.
Crypt means hidden or vault and graphy means writing so that cryptography means that's the writing or message which is in hidden form.
In cryptography we encrypt(convert our message into secret form) our message in secret form using different cryptography algorithm so that unautorised person could not read the message.
After doing encryption we send data to receiver and in receiver already have a decription key so receiver decrypt(retrieve encrypt data in real form ) the message so that only receiver can read that message.


Objectives of Cryptography :-


1 : Confidentiality :  Confidentiality means that the message will not be reached in hands of unauthorized person.Only the authorized person have to read or receive message.


2 : Integrity : Integrity means that the data which we send will only reached to the receiver,there has no third one interrupt in the data.

3: Authentication : Authentication means that sender and receiver firstly identify each other and then perform the transmission of data.


Comments

Popular posts from this blog

what is a RSA encryption ??

what is a RSA encryption ?? RSA : - Rivest-Shamir-Adleman (these are the name of RSA inventors.) RSA is a encryption algorithm which is used to send message securely in the internet.RSA is a public key algorithm widely used for secure data transmission.In public key algorithm we used two keys for data transmission : one is public and another is private key.We use public key for data encryption and private key for data decryption .  RSA is based on the principle that it is easy to multiply large numbers, but factoring large numbers is very difficult. In RSA, the public key is generated by multiplying two large prime numbers and  together, and the private key is generated through a different process involving  and . A user can then distribute his public key , and anyone wishing to send the user a message would encrypt their message using the public key. Algorithm of RSA :- Choose two large prime numbers P and Q such that P is not equals of Q. Calculate ...