Compare commits
No commits in common. "d4694a1169048ce232f06ecf3676280700828e5e" and "7a3b4f9174fd284124bfd58f4b2be31baff22443" have entirely different histories.
d4694a1169
...
7a3b4f9174
4 changed files with 27 additions and 94 deletions
Binary file not shown.
Before Width: | Height: | Size: 108 KiB |
Binary file not shown.
Before Width: | Height: | Size: 88 KiB |
|
@ -40,7 +40,8 @@ _-- Jon Postel_
|
||||||
|
|
||||||
---
|
---
|
||||||
<style scoped>
|
<style scoped>
|
||||||
li {font-size: 40px;}
|
ul {font-size: 48px}
|
||||||
|
li small {font-size: 42px;}
|
||||||
</style>
|
</style>
|
||||||
# Agenda
|
# Agenda
|
||||||
|
|
||||||
|
@ -54,7 +55,7 @@ _-- Jon Postel_
|
||||||
|
|
||||||
---
|
---
|
||||||
<style scoped>
|
<style scoped>
|
||||||
li {font-size: 30px;}
|
ul {font-size: 30px; margin-top:15px}
|
||||||
</style>
|
</style>
|
||||||
# Terminologia
|
# Terminologia
|
||||||
|
|
||||||
|
@ -66,12 +67,13 @@ Ad oggi l'implementazione di OpenPGP più nota (ma se ne stanno diffondendo altr
|
||||||
|
|
||||||
---
|
---
|
||||||
<style scoped>
|
<style scoped>
|
||||||
ul {margin-top: 0;}
|
p {font-size: 32px; margin-top:10px}
|
||||||
p, li {font-size: 32px;}
|
ul {font-size: 32px; margin-top:10px}
|
||||||
|
ul ul {font-size: 30px; margin:0px}
|
||||||
</style>
|
</style>
|
||||||
# "Ecosistema" OpenPGP (1)
|
# "Ecosistema" OpenPGP (1)
|
||||||
|
|
||||||
Lo standard OpenPGP propriamente detto (RFC 9580) definisce principalmente:
|
Lo standard OpenPGP propriamente detto (RFC 9580) definisce principalmente;
|
||||||
- Algoritmi supportati
|
- Algoritmi supportati
|
||||||
- Crittografia simmetrica e asimmetrica
|
- Crittografia simmetrica e asimmetrica
|
||||||
- Hashing e Firma digitale
|
- Hashing e Firma digitale
|
||||||
|
@ -83,38 +85,6 @@ Lo standard OpenPGP propriamente detto (RFC 9580) definisce principalmente:
|
||||||
- Grammatica dei messaggi (_Packet Sequence Composition_)
|
- Grammatica dei messaggi (_Packet Sequence Composition_)
|
||||||
- Raccomandazioni implementative
|
- Raccomandazioni implementative
|
||||||
|
|
||||||
---
|
|
||||||
<style scoped>
|
|
||||||
p , ul {font-size: 30px;}
|
|
||||||
</style>
|
|
||||||
# "Ecosistema" OpenPGP (2)
|
|
||||||
|
|
||||||
Altre specifiche, ufficiali o _de facto_, la consuetudine e le scelte implementative definiscono:
|
|
||||||
- PKI: distribuzione, ricerca e reperimento delle chiavi pubbliche (keyserver)
|
|
||||||
- Verifica delle chiavi (_Web of Trust_)
|
|
||||||
- Sicurezza delle chiavi private (hard disk, smart card, token, ...)
|
|
||||||
- Semantica dei messaggi
|
|
||||||
- API, CLI, GUI
|
|
||||||
|
|
||||||
La comunità usa abitualmente l'espressione _Ecosistema OpenPGP_ per definire l'insieme degli standard, delle implementazioni (librerie, frontend, tools) e dei progetti correlati
|
|
||||||
|
|
||||||
---
|
|
||||||
<style scoped>
|
|
||||||
p {margin-top: 100px}
|
|
||||||
img {width: 100%; height: 430px}
|
|
||||||
</style>
|
|
||||||
# Timeline storica
|
|
||||||
|
|
||||||
![](assets/timeline1.png)
|
|
||||||
|
|
||||||
---
|
|
||||||
<style scoped>
|
|
||||||
p {margin-top: 125px}
|
|
||||||
img {width: 100%; height: 340px;}
|
|
||||||
</style>
|
|
||||||
# Timeline recente
|
|
||||||
|
|
||||||
![](assets/timeline2.png)
|
|
||||||
|
|
||||||
---
|
---
|
||||||
# TODO
|
# TODO
|
||||||
|
|
|
@ -1,61 +1,19 @@
|
||||||
/*
|
/* @theme custom */
|
||||||
* @theme custom
|
|
||||||
*
|
@import 'gaia';
|
||||||
* @auto-scaling true
|
|
||||||
* @size 16:9 1280px 720px
|
|
||||||
* @size 4:3 960px 720px
|
|
||||||
*/
|
|
||||||
|
|
||||||
section {
|
section {
|
||||||
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
|
|
||||||
font-size: 40px;
|
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
padding: 15px 25px 0 25px;
|
padding: 15px 25px 0 25px;
|
||||||
margin-bottom:0;
|
margin-bottom:0;
|
||||||
}
|
}
|
||||||
section h1 {
|
section h1 {
|
||||||
color: #ccc;
|
|
||||||
border-bottom: dotted 1px #ccc;
|
border-bottom: dotted 1px #ccc;
|
||||||
margin: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 5px;
|
|
||||||
font-size: 45px;
|
font-size: 45px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 10px 0 10px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
font-family: 'Courier New', Courier, monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
border-spacing: 0;
|
|
||||||
border-collapse: collapse;
|
|
||||||
margin: 1em 0 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
th, td {
|
|
||||||
padding: 2px 0 2px 2px;
|
|
||||||
border-width: 1px;
|
|
||||||
border-style: solid;
|
|
||||||
}
|
|
||||||
th {
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
margin-top:15px;
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
li ul {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.columns {
|
div.columns {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 0;
|
gap: 0;
|
||||||
|
@ -79,15 +37,11 @@ footer {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #bbb;
|
color: #bbb;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
line-height: 30px;
|
line-height: 10px;
|
||||||
margin: 0 65px 0 0;
|
margin: 0 80px 0 0;
|
||||||
padding: 16px 0 0 0;
|
padding: 16px 0 0 20px;
|
||||||
border-top: 0px;
|
border-top: 0px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
}
|
||||||
/* page numbering */
|
/* page numbering */
|
||||||
section::after {
|
section::after {
|
||||||
|
@ -96,7 +50,7 @@ section::after {
|
||||||
color: #bbb;
|
color: #bbb;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 35px;
|
height: 35px;
|
||||||
line-height: 24px;
|
line-height: 10px;
|
||||||
padding: 13px 25px 0 0;
|
padding: 13px 25px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,14 +99,23 @@ section.whoami #col-right {
|
||||||
}
|
}
|
||||||
section.whoami ul {
|
section.whoami ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
margin-left: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
flex-grow: 1;
|
||||||
font-size: 35px;
|
font-size: 33px;
|
||||||
}
|
}
|
||||||
section.whoami li {
|
section.whoami li {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
section.whoami li ul{
|
||||||
|
font-size: 25px;
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
section.whoami p#license {
|
section.whoami p#license {
|
||||||
font-size: 30px;
|
font-size: 25px;
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
font-weight: normal;
|
||||||
}
|
}
|
Loading…
Reference in a new issue