Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Getting linting errors in CI?
[Install Prettier](https://prettier.io/docs/en/install.html) locally and run:

```
prettier -w .
npm run prettier
```

### Markdown references
Expand Down
7 changes: 6 additions & 1 deletion _data/blogposts.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,12 @@ async function downloadIfNotFound(url, destination) {
);

const response = await fetch(url);
const content = await response.text();
let content;
if (response.headers.get("Content-Type").startsWith("text")) {
content = await response.text();
} else {
content = await response.bytes();
}

fs.writeFileSync(destination, content);
} else {
Expand Down
5 changes: 4 additions & 1 deletion _data/publications.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ async function main() {
// parse the front matter and add to 'profiles'
let publications = generatePublications();
//console.log( publications );
//process.exit()

// sort without year first and then newest to oldest years
let ordered = publications.sort((a, b) => {
Expand All @@ -62,6 +63,8 @@ async function main() {
else if (a.year == "pending") return -1;
else if (b.year == "pending") return 1;
});
//console.log( ordered );
//process.exit()

let author_publications = {};
for (const publication of ordered) {
Expand All @@ -82,7 +85,7 @@ async function main() {
fs.readFileSync("_build/publications_cached.json")
);

result[ordered] = ordered;
result["ordered"] = ordered;

let publication_years = [];
let publication_interests = [];
Expand Down
2 changes: 1 addition & 1 deletion about/people/alumni/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ title: Alumni
<h1>Our alumni</h1>

We are fortunate to build on the efforts of those who came before us. The list below is
imcomplete - we appreciate all those colleagues, mentors and co-conspirators who have
incomplete - we appreciate all those colleagues, mentors and co-conspirators who have
helped us help build a better Internet.

<nav class="profiles">
Expand Down
8 changes: 8 additions & 0 deletions outreach/events/2021-09-27-sac.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: "SAC 2021"
link: https://www.sacworkshop.org/SAC21/
end: 2021-09-27
---

SAC is Canada's research conference on cryptography, held annually since 1994. From its original emphasis on block ciphers, SAC has evolved into a leading international conference in cryptography covering a range of topics in the field. Cloudflare researchers present signature schemes for existing keys in a talk titled [ZKAttest: Ring and Group Signatures for Existing ECDSA Keys](/publications/Faz-Hernandez2021/).
8 changes: 8 additions & 0 deletions outreach/events/2021-10-04-ascrypto.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: "ASCrypto 2021"
link: http://web.archive.org/web/20211205143911/https://www.urosario.edu.co/Latin-Crypt/inicio/
end: 2021-10-04
---

ASCrypto 2021 is the Advanced School on Cryptology and Information Security in Latin America, colocated with Latincrypt 2021. Armando Faz is presenting a course about hashing to curve functions titled "Love in the Time of Hash to Curve".
8 changes: 8 additions & 0 deletions outreach/events/2021-10-06-latincrypt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: "LATINCRYPT 2021"
link: https://www.urosario.edu.co/Latin-Crypt/inicio/
end: 2021-10-06
---

LATINCRYPT 2021 is the 7th International Conference on Cryptology and Information Security in Latin America taking place in Bogotá, Colombia. Cloudflare researchers are presenting results about KEMTLS in a talk titled [Implementing and measuring KEMTLS](/publications/Celi2021/).
8 changes: 8 additions & 0 deletions outreach/events/2024-03-28-oscw.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: "OSCW 2024"
link: https://opensourcecryptowork.shop/2024/
end: 2024-03-28
---

The Open Source Cryptography Workshop (OSCW) brings together practitioners interested in open source cryptographic libraries and projects, specifically challenges surrounding their production, maintenance, and usage. Armando Faz is contributing with a talk titled "CIRCL: A Library for Post-Quantum and Elliptic Curve Cryptography".
8 changes: 8 additions & 0 deletions outreach/events/2024-04-29-pq-group-crypto.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: "AIM Workshop: Post-quantum Group-based Cryptography"
link: https://aimath.org/pastworkshops/postquantgroup.html
end: 2024-04-29
---

This workshop, hosted by the American Institute of Mathematics at Caltech, explores an alternative approach to design post-quantum schemes: namely, group-based cryptography. Armando Faz is contributing a talk titled "Group-based Cryptography in CIRCL".
8 changes: 8 additions & 0 deletions outreach/events/2024-10-16-rci.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: "RCI5.0"
link: https://ciberseguridadindustria.inaoep.mx/2024
end: 2024-10-16
---

RCI5.0 is a forum where academics and industry professionals collaborate to discuss and apply the latest cybersecurity advancements to solve real-world problems. Armando Faz contributes with a talk titled "Salvaguardando los bits de Internet".
8 changes: 8 additions & 0 deletions outreach/events/2025-03-24-aactc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: "Algebraic Applications to Coding Theory and Cryptography"
link: https://sites.google.com/view/coding-mx/poster
end: 2025-03-24
---

The 2025 Algebraic Applications to Coding Theory and Cryptography workshop gathers researchers to present their recent developments and applications of algebraic constructions and methods. Armando Faz is participating with a talk titled "Securing Information over the Internet: Challenges and Open Problems".
8 changes: 8 additions & 0 deletions outreach/events/2025-09-26-catiocrypto.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: CatioCrypto 2025
link: https://www.octavio.pk/catiocrypto/2025/
end: 2025-09-26
---

CatioCrypto 2025 is an introductory school on Cryptography colocated with LATINCRYPT 2025. Armando Faz presents an entry-level course on Elliptic Curve Cryptography and on Zero-Knowledge Proofs.
8 changes: 8 additions & 0 deletions outreach/events/2025-10-01.latincrypt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
tags: event
title: "LATINCRYPT 2025"
link: https://ciencias.medellin.unal.edu.co/eventos/latincrypt/
end: 2025-10-01
---

LATINCRYPT 2025 is the 9th International Conference on Cryptology and Information Security in Latin America taking place in Medellín, Colombia. Armando Faz presents a paper about optimizations on Lagrange polynomials titled [Rhizomes and the Roots of Efficiency — Improving Prio](/publications/Faz-Hernandez2025/).