Crypto 101

symetric: both sender and rec have the same key. Then you encrypt and decrypt with one key. - des - aes - rc4 - blowfish asymetric/public key: public key can encrypt but cannot decrypt then the private key can decrypt. Each user has their own private and send the corresponding public keys to the other users. Data handling refers to how much data we encrypt and send at a time. Block: we do it in chunks (8bytes, 16,32, etc) - des - aes stream: we do it byte by byte - rc4 - a5/1 ECB block: Electronic code block cipher easer to reverse since identical text blocks will end up being the same cipher blocks and can be guessed. CBC block: cipher-block chaining harder to guess at since it also uses the last block to help encrypt the current block and the first block is an initializer block.

Crypto attack categories:

common attacks:

Last updated