IGCSE
IGCSE1.2.3Paper 1 — Computer Systems
Encryption
Scrambling data so that stealing it is pointless without the key.

ENCRYPTION0/0 correct
Encrypt with a shift of 3
HELLO
//What encryption does and does not do
Encryption does NOT stop data being intercepted. It makes the intercepted data meaningless without the key. Say that precisely — 'it stops hackers' is not enough for the mark.
//Symmetric vs asymmetric
Symmetric uses the SAME key to encrypt and decrypt, so it is fast — but that key must somehow be sent to the other person safely, which is the weakness. Asymmetric uses a pair: the PUBLIC key encrypts and can be given to anyone, and only the matching PRIVATE key can decrypt. That solves the key-sharing problem.
Symmetric : key A encrypts, key A decrypts
Asymmetric : public key encrypts
private key decrypts (kept secret)KEY TERMS
FLASHCARDS1 / 3
CHECK YOURSELF
1.What does encryption actually protect against?
2.In asymmetric encryption, which key does the sender use to encrypt?
3.What is the main weakness of symmetric encryption?