Encryptions And Decryption
it is a way of secure the data. It’s based on two-way mechanism. if we want, we can encrypt (convert to unreadable format from original data) the data also decrypt(convert to original data from unreadable format) the data and get the original data by using the key. this is based on public key info structure (PIK). Also, it has two type, those are symmetric and asymmetric.
· Symmetric
We use a single key for encrypting and decrypting in Symmetric encryption.
· Asymmetric
It has two keys, one is public key other one is a private key. However, we called as the key pair for those keys. We can use both keys to encrypt or decrypt the data. But there is one condition if we use the public key to encrypt the data. We should use a private key to decrypt otherwise we can not recover the original data.
Comments
Post a Comment