Skip to content

Commit 1edeacf

Browse files
authored
Merge pull request #26 from airchains-network/testnet/intro-to-zkfhe
testnet/intro-to-zkfhe --> development
2 parents 4ba09d2 + 21aa3b4 commit 1edeacf

File tree

3 files changed

+70
-1
lines changed

3 files changed

+70
-1
lines changed

docs/intro-to-zkfhe/index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,9 @@ id: intro-to-zkfhe
33
title: Intro to zkFHE
44
description: Introduction to Zero-Knowledge Fully Homomorphic Encryption
55
sidebar_position: 3
6-
---
6+
slug: /concepts/intro-to-zkfhe
7+
---
8+
9+
import IntroToZKFHE from '@site/src/components/Docs/intro-to-zkfhe.js';
10+
11+
<IntroToZKFHE />

sidebars.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ const sidebars = {
3737
type: "category",
3838
label: "Intro to zkFHE",
3939
className: "custom-sidebar-item",
40+
link: {
41+
type: "doc",
42+
id: "intro-to-zkfhe/intro-to-zkfhe",
43+
},
4044
items: [
4145
"intro-to-zkfhe/zk-proofs",
4246
"intro-to-zkfhe/fully-homomorphic-encryption",
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import Link from "@docusaurus/Link";
2+
import React from "react";
3+
4+
const IntroToZKFHE = () => {
5+
return (
6+
<div>
7+
<p>
8+
Airchains leverages advanced Zero-Knowledge (ZK) and Fully Homomorphic
9+
Encryption (FHE) technologies to address critical challenges in
10+
scalability, privacy, and security.
11+
</p>
12+
<p>
13+
By integrating the two technologies together, Airchains ensures that
14+
computations can be performed on encrypted data, maintaining privacy,
15+
while zk-SNARKs provide robust mechanisms for verifying computations
16+
without exposing the underlying data, ensuring confidentiality and
17+
security. This is the essence of zkFHE.
18+
</p>
19+
<div className="docs_heading">Useful Links</div>
20+
<div className="docs_card_image_wrapper">
21+
<Link
22+
to={`/concepts/intro-to-zkfhe/zk-proofs`}
23+
className="docs_card_without_image"
24+
>
25+
<div className="docs_card_heading_title">ZK Proofs</div>
26+
<div className="docs_card_description">
27+
Explore how ZK Proofs enable privacy-preserving computations and how
28+
they are used in Airchains.
29+
</div>
30+
</Link>
31+
<Link
32+
to={`/concepts/intro-to-zkfhe/fully-homomorphic-encryption`}
33+
className="docs_card_without_image"
34+
>
35+
<div className="docs_card_heading_title">
36+
Fully Homomorphic Encryption
37+
</div>
38+
<div className="docs_card_description">
39+
Learn how FHE enables computations on encrypted data without the
40+
need to decrypt it.
41+
</div>
42+
</Link>
43+
<Link
44+
to={`/concepts/intro-to-zkfhe/zk-snark-and-fhe-integration`}
45+
className="docs_card_without_image"
46+
>
47+
<div className="docs_card_heading_title">
48+
zk-SNARK and FHE Integration
49+
</div>
50+
<div className="docs_card_description">
51+
Learn how Provers and Sequencers maintain trust, integrity, and
52+
order in decentralized networks.
53+
</div>
54+
</Link>
55+
</div>
56+
</div>
57+
);
58+
};
59+
60+
export default IntroToZKFHE;

0 commit comments

Comments
 (0)