|
|
|
The framework that provides services like encryption and signing is known as Public Key Infrastructure.
|
| Why would you need it? When you send a message to your bank, the bank wants to know if it's really you who is mailing them. You might want to sign for a loan on a house or a new car and instead of sending the signed papers with the normal mail, you send it with an e-mail and your digital signature over the internet. Telenor (a Norwegian telecom company) and others have integrated PKI technology within the SIM cards in mobile phones, this to enable secure transaction when you use your phone to pay for services. In Estland you pay for the bus-ride by using your mobile phone. |
| Different methods of
Encryption: Stream Cipher (Symmetric): Each bit is sequentially encrypted. One bit of data being combined with one bit of the key. The key can be a fixed length key, or a key that varies in length or a key that varies randomly for every bit of data. Continually varying the encryption key is called a "one-time pad" and would not generate any repeating patterns and could be impossible to crack. Block Cipher (Symmetric): A block of a specific size is being encrypted using a specific size key. DES (Data encryption standard) specifies that encrypted data should be processed in 64-bit blocks using a 56-bit key. Public/Private Crypto Keys (Asymmetric/Symmetric) : The need for sender and receiver to share keys via a secure channel is eliminated. Diffie and Hellman introduced this type of key in 1975. The British Secret Service invented it 5 years before, but kept it a military secret until recently. |
| There is a relationship between these:
If you know any of these 3, you can determine the fourth. |
|
|
Back to start |