Skip to content

Commit

Permalink
Add recomandations slide
Browse files Browse the repository at this point in the history
  • Loading branch information
TGianella committed May 24, 2024
1 parent fdbc7cc commit 8a3cd84
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 25 deletions.
Binary file added src/assets/owasp-cheat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/owasp_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ import GameOfLifeProblem from "../slides/1_hash_functions_demo/GameOfLifeProblem
import Eden from "../slides/1_hash_functions_demo/Eden.astro";
import InjectivityExemple from "../slides/1_hash_functions_demo/InjectivityExemple.astro";
import GameOfLifeParadox from "../slides/1_hash_functions_demo/GameOfLifeParadox.astro";
import DisclaimerFinal from "../slides/1_hash_functions_demo/DisclaimerFinal.astro";
import Final from "../slides/intro/Final.astro";
import Recommendations from "../slides/1_hash_functions_demo/Recommendations.astro";
---

<Layout title="My Awesome Talk Title">
Expand Down Expand Up @@ -72,7 +72,8 @@ import Final from "../slides/intro/Final.astro";
<Eden />
<InjectivityExemple />
<GameOfLifeParadox />
<DisclaimerFinal />
<Disclaimer />
<Recommendations />
<Final />
<!-- Put your slides here -->
</div>
Expand Down
23 changes: 0 additions & 23 deletions src/slides/1_hash_functions_demo/DisclaimerFinal.astro

This file was deleted.

31 changes: 31 additions & 0 deletions src/slides/1_hash_functions_demo/Recommendations.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
import TitleSlide from "../../components/TitleSlide.astro";
import OwaspLogo from "../../assets/owasp_logo.png";
import OwaspCheat from "../../assets/owasp-cheat.png"
---

<TitleSlide title="recommandations" spacing={3}>
<div class="r-stack">
<img class="fragment fade-in-then-out" src={OwaspLogo.src} />
<img class="fragment fade-in-then-out" src={OwaspCheat.src} width="700" />
<div class="fragment">
<h4>Utilisez des algorithmes modernes</h4>
<div class="flex">
<span class="fragment">Argon2</span>
<span class="fragment">scrypt</span>
<span class="fragment">bcrypt</span>
</div>
</div>
</div>
</TitleSlide>

<style>
.flex {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 1.3em;
margin-top: 10vh;
font-weight: bold;
}
</style>

0 comments on commit 8a3cd84

Please sign in to comment.