Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
Fix errors in the reference to images
Browse files Browse the repository at this point in the history
  • Loading branch information
Juanvi Vera committed Dec 27, 2022
1 parent 85f37ed commit a13eb75
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ ejercicios/**/.ipynb_checkpoints
ejercicios/**/*.pdf
notes.txt
push
release
4 changes: 2 additions & 2 deletions slides/02-cifrado.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ Un algoritmo está **criptográficamente roto** si se conoce un ataque más efic

---

![](images/cta2296-fig-0002-m.jpg)
![](images/conceptos/cta2296-fig-0002-m.jpg)

<!--
Estos son los algoritmos de seguridad computacional que utilizamos
Expand Down Expand Up @@ -252,7 +252,7 @@ Ejemplos actuales: AES, ChaCha

Ejemplos rotos y obsoletos: RC4, DES, TDES

![bg right](images/pexels-cottonbro-7319077.jpg)
![bg right](images/generic/pexels-cottonbro-7319077.jpg)

> Fondo: <https://www.pexels.com/photo/photo-of-person-using-magnifying-glass-7319077/>
Expand Down
7 changes: 5 additions & 2 deletions slides/03-hashes.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,11 @@ Solución: cifrar solo el hash del mensaje
En firma digital se cifra el hash del mensaje con nuestra clave privada

$$
Firma_{Bob}(document) = E_{RSA}(K_{priv}^{Bob}, hash(document)) \\
Verificacion(document, Firma_{Bob}) = D_{RSA}(K_{pub}^{Bob}, Firma_{Bob}) =^? hash(document)
Firma_{Bob}(document) = E_{RSA}(K_{priv}^{Bob}, hash(document))
$$

$$
Verificacion(document, Firma_{Bob}) = (D_{RSA}(K_{pub}^{Bob}, Firma_{Bob}) =^? hash(document))
$$

---
Expand Down

0 comments on commit a13eb75

Please sign in to comment.