Cybersecurity Foundations

Cybersecurity Foundations HSR Vorlesung 1-5 PART 2: https://card2brain.ch/box/20200731_cysec_foundations_teil_2

Cybersecurity Foundations HSR Vorlesung 1-5 PART 2: https://card2brain.ch/box/20200731_cysec_foundations_teil_2


D. K.
This flashcard set covers fundamental concepts in cybersecurity at a university level, focusing on encryption, hashing, and secure communication protocols. It delves into key topics like RSA, Diffie-Hellman, AES, and the one-time pad, explaining their mechanisms, advantages, and vulnerabilities. The set is particularly useful for students and professionals seeking to understand the principles behind securing data and messages, ensuring they can identify and mitigate risks effectively.
Karten
61
Lernende
9
Sprache
Englisch
Kategorie
Informatik
Stufe
Universität
Erstellt / Aktualisiert
31.07.2020 / 27.07.2025

Lernkarten

What is a hash funciton and why is it useful

Takes a message of any length and creates a pseudorandom hash with a fixed length.

Used for Message authentication, Integrity, passwords

A good hash algorithm is fast, but not too fast

Whats a strong hash function

Any linput length results in a fixed size hash.

1. it has to be quick but not too quick

2. it has to introduce diffusion => 1 change results in many

3. Given a hash, we can’t reverse it 

4. Given a message and its hash, we can’t find another message that hashes to the same thing  

5. We can’t find any two messages that have the same hash 

MD5: is strong but creates collisions => broken

SHA1 / SHA2: is strong and currently not broken

Whats the current hash standard

SHA-2 256 bit or 512 bit

 

SHA-3 is not better or worser than SHA-2

Which hash functions should be used for passwords and why is SHA-2 not a good solution

SHA-2 is to fast a attacker can generate a lot of hashes and compare the outputs to the found password

A good solution for password hashes are the following algorithms

  • PBKDF2(Password-Based Key Derivation Function 2)
  • bcrypt

works similar to SHA-2 but the process is repeated e.g. 5000 times this makes it 5000 times slower. also these algorithms are hard to run on a GPU which makes it more difficult to parallel create hashes to gues the password.

Where are hashes used

  • Digital signatures
  • message tampering is a common attack and with hashes it can be ensured that the message wasn't altered. 
    • The hash of the message is added to the packet the receiver applies the hash function on the content and compares it to the received hash, if both of them are the same it's more likely that the data hasn't been changed