diff --git a/app/i18n/locales/en/blog-page.json b/app/i18n/locales/en/blog-page.json index 9b0f7bd..23e312b 100644 --- a/app/i18n/locales/en/blog-page.json +++ b/app/i18n/locales/en/blog-page.json @@ -2,5 +2,6 @@ "title": "Blog", "subtitle": "Read our latest articles and stay updated on the latest news in the world of cryptography.", "recentArticles": "Recent", - "seeMore": "See more" + "seeMore": "See more", + "readMore": "Read more" } diff --git a/articles/advancing-anon-aadhaar-whats-new-in-v100.md b/articles/advancing-anon-aadhaar-whats-new-in-v100.md index cb6ea37..0d6319c 100644 --- a/articles/advancing-anon-aadhaar-whats-new-in-v100.md +++ b/articles/advancing-anon-aadhaar-whats-new-in-v100.md @@ -8,8 +8,6 @@ canonical: "https://mirror.xyz/privacy-scaling-explorations.eth/YnqHAxpjoWl4e_K2 tags: ["test"] --- -### **Introducing Anon Aadhaar v1.0.0** - [Anon Aadhaar](https://github.com/anon-aadhaar/anon-aadhaar) is a protocol that enables [Aadhaar](https://en.wikipedia.org/wiki/Aadhaar) holders to prove their identity anonymously. It works by verifying the Aadhaar card's issuer signature, which is issued by the Indian government in formats like *PDF*, _XML_, and _Secure QR_ code. These digital versions are signed using RSA, involving a pair of keys: a private key for signing data and a public key for verification. Our protocol leverages the [UIDAI's](https://uidai.gov.in/en/about-uidai.html) (government authority) RSA signature, enabling us to verify the documents as anyone could. The novelty of our approach is the use of a SNARK proof in the verification process, which hides sensitive data from the verifier, maintaining the same level of verification while enhancing privacy. diff --git a/articles/towards_a_quantum-safe_p2p_for_ethereum.md b/articles/towards_a_quantum-safe_p2p_for_ethereum.md index 4db9603..2faddce 100644 --- a/articles/towards_a_quantum-safe_p2p_for_ethereum.md +++ b/articles/towards_a_quantum-safe_p2p_for_ethereum.md @@ -6,8 +6,6 @@ tldr: "Integrating post‑quantum cryptography into Ethereum’s P2P stack is cu date: "2025-04-22" --- -# Towards a Quantum-Safe P2P for Ethereum - ## Motivation As quantum computing continues to evolve, there is increasing interest in understanding how Ethereum’s existing peer-to-peer (P2P) networking stack might adapt to emerging post-quantum (PQ) cryptographic standards. PSE members Adria and Guorong undertook a brief exploratory project to assess what adopting PQ algorithms in Ethereum’s P2P layer would entail. This exploration aimed primarily at gaining clarity around potential challenges and identifying realistic directions for future PQ-focused efforts. Ultimately, the project highlighted significant practical limitations, providing valuable insights that we hope will help inform further PQ initiatives. diff --git a/components/blog/blog-recent-articles.tsx b/components/blog/blog-recent-articles.tsx index dc47ad9..f1ac35b 100644 --- a/components/blog/blog-recent-articles.tsx +++ b/components/blog/blog-recent-articles.tsx @@ -1,14 +1,13 @@ import { useTranslation } from "@/app/i18n" import { AppContent } from "../ui/app-content" import { getArticles } from "@/lib/blog" -import Image from "next/image" import Link from "next/link" import { cn } from "@/lib/utils" import { Button } from "../ui/button" import { Icons } from "../icons" export async function BlogRecentArticles({ lang }: { lang: any }) { - const articles = getArticles({ limit: 6 }) + const articles = getArticles({ limit: 4 }) const { t } = await useTranslation(lang, "blog-page") const lastArticle = articles[0] @@ -23,33 +22,46 @@ export async function BlogRecentArticles({ lang }: { lang: any }) {