|
| 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