Trending

#HomomorphicEncryption

Latest posts tagged with #HomomorphicEncryption on Bluesky

Latest Top
Trending

Posts tagged #HomomorphicEncryption

Preview
Intel Demos Chip to Compute With Encrypted Data ## Summary * Fully homomorphic encryption (FHE) allows computing on encrypted data without decryption, but it’s currently slow on standard CPUs and GPUs. * Intel’s Heracles chip accelerates FHE tasks up to 5,000 times faster than top Intel server CPUs. * Heracles uses a 3-nanometer FinFET technology and high-bandwidth memory, enabling efficient encrypted computing at scale. * Startups and Intel are racing to commercialize FHE accelerators, with potential applications in AI and secure data processing. Worried that your latest ask to a cloud-based AI reveals a bit too much about you? Want to know your genetic risk of disease without revealing it to the services that compute the answer? There is a way to do computing on encrypted data without ever having it decrypted. It’s called fully homomorphic encryption, or FHE. But there’s a rather large catch. It can take thousands—even tens of thousands—of times longer to compute on today’s CPUs and GPUs than simply working with the decrypted data. So universities, startups, and at least one processor giant have been working on specialized chips that could close that gap. Last month at the IEEE International Solid-State Circuits Conference (ISSCC) in San Francisco, Intel demonstrated its answer, Heracles, which sped up FHE computing tasks as much as 5,000-fold compared to a top-of the-line Intel server CPU. Startups are racing to beat Intel and each other to commercialization. But Sanu Mathew, who leads security circuits research at Intel, believes the CPU giant has a big lead, because its chip can do more computing than any other FHE accelerator yet built. “Heracles is the first hardware that works at scale,” he says. The scale is measurable both physically and in compute performance. While other FHE research chips have been in the range of 10 square millimeters or less, Heracles is about 20 times that size and is built using Intel’s most advanced, 3-nanometer FinFET technology. And it’s flanked inside a liquid-cooled package by two 24-gigabyte high-bandwidth memory chips—a configuration usually seen only in GPUs for training AI. RELATED: How to Compute with Data You Can’t See In terms of scaling compute performance, Heracles showed muscle in live demonstrations at ISSCC. At its heart the demo was a simple private query to a secure server. It simulated a request by a voter to make sure that her ballot had been registered correctly. The state, in this case, has an encrypted database of voters and their votes. To maintain her privacy, the voter would not want to have her ballot information decrypted at any point; so using FHE, she encrypts her ID and vote and sends it to the government database. There, without decrypting it, the system determines if it is a match and returns an encrypted answer, which she then decrypts on her side. On an Intel Xeon server CPU, the process took 15 milliseconds. Heracles did it in 14 microseconds. While that difference isn’t something a single human would notice, verifying 100 million voter ballots adds up to more than 17 days of CPU work versus a mere 23 minutes on Heracles. Looking back on the five-year journey to bring the Heracles chip to life, Ro Cammarota, who led the project at Intel until last December and is now at University of California Irvine, says “we have proven and delivered everything that we promised.” ## FHE Data Expansion FHE is fundamentally a mathematical transformation, sort of like the Fourier transform. It encrypts data using a quantum-computer-proof algorithm, but, crucially, uses corollaries to the mathematical operations usually used on unencrypted data. These corollaries achieve the same ends on the encrypted data.**** One of the main things holding such secure computing back is the explosion in the size of the data once it’s encrypted for FHE,Anupam Golder, a research scientist at Intel’s circuits research lab, told engineers at ISSCC. “Usually, the size of cipher text is the same as the size of plain text, but for FHE it’s orders of magnitude larger,” he said. While the sheer volume is a big problem, the kinds of computing you need to do with that data is also an issue. FHE is all about very large numbers that must be computed with precision. While a CPU can do that, it’s very slow going—integer addition and multiplication take about 10,000 more clock cycles in FHE. Worse still, CPUs aren’t built to do such computing in parallel. Although GPUs excel at parallel operations, precision is not their strong suit. (In fact, from generation to generation, GPU designers have devoted more and more of the chip’s resources to computing less and less-precise numbers.) FHE also requires some oddball operations with names like “twiddling” and “automorphism,” and it relies on a compute-intensive noise-cancelling process called bootstrapping. None of these things are efficient on a general-purpose processor. So, while clever algorithms and libraries of software cheats have been developed over the years, the need for a hardware accelerator remains if FHE is going to tackle large-scale problems, says Cammarota. ## The Labors of Heracles Heracles was initiated under a DARPA program five years ago to accelerate FHE using purpose-built hardware. It was developed as “a whole system-level effort that went all the way from theory and algorithms down to the circuit design,” says Cammarota. Among the first problems was how to compute with numbers that were larger than even the 64-bit words that are today a CPU’s most precise. There are ways to break up these gigantic numbers into chunks of bits that can be calculated independently of each other, providing a degree of parallelism. Early on, the Intel team made a big bet that they would be able to make this work in smaller, 32-bit chunks, yet still maintain the needed precision. This decision gave the Heracles architecture some speed and parallelism, because the 32-bit arithmetic circuits are considerably smaller than 64-bit ones, explains Cammarota. At Heracles’ heart are 64 compute cores—called tile-pairs—arranged in an eight-by-eight grid. These are what are called single instruction multiple data (SIMD) compute engines designed to do the polynomial math, twiddling, and other things that make up computing in FHE and to do them in parallel. An on-chip 2D mesh network connects the tiles to each other with wide, 512 byte, buses. RELATED: Tech Keeps Chatbots From Leaking Your Data Important to making encrypted computing efficient is feeding those huge numbers to the compute cores quickly. The sheer amount of data involved meant linking 48-GB-worth of expensive high-bandwidth memory to the processor with 819 GB per second connections. Once on the chip, data musters in 64 megabytes of cache memory—somewhat more than an Nvidia Hopper-generation GPU. From there it can flow through the array at 9.6 terabytes per second by hopping from tile-pair to tile-pair. To ensure that computing and moving data don’t get in each other’s way, Heracles runs three synchronized streams of instructions simultaneously, one for moving data onto and off of the processor, one for moving data within it, and a third for doing the math, Golder explained. It all adds up to some massive speed ups, according to Intel. Heracles—operating at 1.2 gigahertz—takes just 39 microseconds to do FHE’s critical math transformation, a 2,355-fold improvement over an Intel Xeon CPU running at 3.5 GHz. Across seven key operations, Heracles was 1,074 to 5,547 times as fast. The differing ranges have to do with how much data movement is involved in the operations, explains Mathew. “It’s all about balancing the movement of data with the crunching of numbers,” he says. ## FHE Competition “It’s very good work,” Kurt Rohloff, chief technology officer at FHE software firm Duality Technology, says of the Heracles results. Duality was part of a team that developed a competing accelerator design under the same DARPA program that Intel conceived Heracles under. “When Intel starts talking about scale, that usually carries quite a bit of weight.” Duality’s focus is less on new hardware than on software products that do the kind of encrypted queries that Intel demonstrated at ISSCC. At the scale in use today “there’s less of a need for [specialized] hardware,” says Rohloff. “Where you start to need hardware is emerging applications around deeper machine-learning oriented operations like neural net, LLMs, or semantic search.” Last year, Duality demonstrated an FHE-encrypted language model called BERT. Like more famous LLMs such as ChatGPT, BERT is a transformer model. However it’s only one tenth the size of even the most compact LLMs. John Barrus, vice president of product at Dayton, Ohio-based Niobium Microsystems, an FHE chip startup spun out of another DARPA competitor, agrees that encrypted AI is a key target of FHE chips. “There are a lot of smaller models that, even with FHE’s data expansion, will run just fine on accelerated hardware,” he says. With no stated commercial plans from Intel, Niobium expects its chip to be “the world’s first commercially viable FHE accelerator, designed to enable encrypted computations at speeds practical for real-world cloud and AI infrastructure.” Although it hasn’t announced when a commercial chip will be available, last month the startup revealed that it had inked a deal worth 10 billion South Korean won (US $6.9 million) with Seoul-based chip design firm Semifive to develop the FHE accelerator for fabrication using Samsung Foundry’s 8-nanometer process technology. Other startups including Fabric Cryptography, Cornami, and Optalysys have been working on chips to accelerate FHE. Optalysys CEO Nick New says Heracles hits about the level of speedup you could hope for using an all-digital system. “We’re looking at pushing way past that digital limit,” he says. His company’s approach is to use the physics of a photonic chip to do FHE’s compute-intensive transform steps. That photonics chip is on its seventh generation, he says, and among the next steps is to 3D integrate it with custom silicon to do the non-transform steps and coordinate the whole process. A full 3D-stacked commercial chip could be ready in two or three years, says New. While competitors develop their chips, so will Intel, says Mathew. It will be improving on how much the chip can accelerate computations by fine tuning the software. It will also be trying out more massive FHE problems, and exploring hardware improvements for a potential next generation. “This is like the first microprocessor… the start of a whole journey,” says Mathew.

#Intel Demos Chip to Compute With Encrypted Data

https://spectrum.ieee.org/fhe-intel

#Heracles #HomomorphicEncryption #cybersecurity #cryptography

1 0 0 0
Meet the Community w/ Miran Kim
Meet the Community w/ Miran Kim YouTube video by FHE_org

This week on FHE.org's Meet the Community, we met with Miran Kim, co-author of the CKKS scheme.

We took the opportunity to ask them to share their thoughts on FHE for anyone who missed their meetup.

Don't miss this interview!

www.youtube.com/watch?v=Uqev...

#FHE #HomomorphicEncryption #CKKS

0 0 0 0
Preview
Evaluating Larger Lookup Tables using CKKS w/ Jules Dumezy · Luma #Abstract This presentation will introduce two novel algorithms for functional bootstrapping in CKKS: Binary Multiplexer Tree (BMT-FBT) and Collapsed…

Join us next week, Thursday, Mar 19th at 4PM CET for an FHE.org meetup featuring Jules Dumezy, a PhD candidate at CEA-List and Université Paris-Saclay, France, presenting "Evaluating Larger Lookup Tables using CKKS".

RSVP at luma.com/FHE.org-086

#FHE #HomomorphicEncryption #CKKS

0 0 0 0
Preview
Homomorphic Encryption - The new encryption Technique As more business go online, they shift their data into the cloud and other internet-based applications. It becomes more important to implement data protection strategies so that sensitive informati...

Homomorphic Encryption - The new encryption Technique
www.ekascloud.com/our-blog/hom...
#HomomorphicEncryption #CyberSecurity #DataSecurity #Encryption #PrivacyTech #FutureTechnology #TechInnovation #CloudSecurity #ITCareers #Ekascloud 🚀

1 0 0 0
Preview
"Unlock secure cloud computing! 🚀 Discover homomorphic encryption, enabling analysis on encrypted da

"Unlock secure cloud computing! 🚀 Discover homomorphic encryption, enabling analysis on encrypted data #HomomorphicEncryption #CloudComputing #SecureDataAnalysis"

🔗 bytejournal.online/blog/homomorphic-encrypt...

0 0 0 0
Preview
Zama - Open Source Cryptography Zama is an open source cryptography company that builds state-of-the-art Fully Homomorphic Encryption (FHE) solutions for blockchain. The Zama Confidential Blockchain Protocol enables confidential sma...

FHE.org would like to thank Zama for their sponsorship this (and every!) year of the FHE.org 2026 conference.

Find out more information about Zama and what they're building at zama.org

#FHE #HomomorphicEncryption #FHE2026 #Zama

0 0 1 0
Preview
Combining Machine Learning and Homomorphic Encryption in the Apple Ecosystem At Apple, we believe privacy is a fundamental human right. Our work to protect user privacy is informed by a set of privacy principles, and…

FHE.org would like to thank Apple for their sponsorship this year of the FHE.org 2026 conference.

Find out more information about Apple and what they're building at machinelearning.apple.com/research/hom...

#FHE #HomomorphicEncryption #FHE2026 #Apple

0 0 1 0
Guide to Applications of Homomorphic Encryption
Guide to Applications of Homomorphic Encryption YouTube video by Microsoft Research

New resource added to FHE.org/resources :

"Guide to Applications of Homomorphic Encryption" by Miran Kim.

www.youtube.com/watch?v=PeE4...

Know of an FHE resource that should be shared? Let us know below!

#FHE #homomorphicEncryption

0 0 0 0
085 FHE in Production w/ Rotem Tsabary
085 FHE in Production w/ Rotem Tsabary YouTube video by FHE_org

Miss our meetup with Rotem Tsabary on "FHE in Production"?

You can watch the recorded presentation here! 👉 www.youtube.com/watch?v=BAo_...

#FHE #HomomorphicEncryption #LatticaAI

0 0 0 0
Preview
Home - Cornami – Realtime Intelligent Computing for AI, Blockchain, and PPML Workloads with FHE; Fully Homomorphic Encryption, and Plaintext Real-Time Computing from Edge to Cloud — Scalable. Secure. Low Power. Cornami delivers high-performance, low-latency computing across edge and cloud environments — purpose-built for today’s data-inten...

FHE.org would like to thank Cornami for their sponsorship this year of the FHE.org 2026 conference.

Find out more information about Cornami and what they're building at cornami.com

#FHE #HomomorphicEncryption #FHE2026 #cornami

0 0 1 0
Post image

FHE.org would like to thank Chain Reaction for their sponsorship this year of the FHE.org 2026 conference.

Find out more information about Chain Reaction and what they're building at chain-reaction.io

#FHE #HomomorphicEncryption #FHE2026 #ChainReaction

0 0 1 0
084 Efficient Homomorphic Matrix Computation for Secure Transformer Inference w/ Miran Kim
084 Efficient Homomorphic Matrix Computation for Secure Transformer Inference w/ Miran Kim YouTube video by FHE_org

Miss our meetup with Miran Kim on "Efficient Homomorphic Matrix Computation for Secure Transformer Inference"?

You can watch the recorded presentation here! 👉 www.youtube.com/watch?v=TVUS...

#FHE #HomomorphicEncryption

3 2 0 0
Post image

FHE.org would like to thank Technology Innovation Institute (TII) for their sponsorship this year of the FHE.org 2026 conference.

Find out more information about Technology Innovation Institute at www.tii.ae

#FHE #HomomorphicEncryption #FHE2026 #TII

1 1 1 0
Post image

FHE.org would like to thank Google for their sponsorship this (and last!) year of the FHE.org 2026 conference.

Find out more information about Google and all the things they do over at about.google

#FHE #HomomorphicEncryption #FHE2026 #Google

0 0 1 0
Preview
FHE.org 2026 Conference - Taipei 🇹🇼 · Luma FHE.org is a community of researchers and developers interested in advancing Fully Homomorphic Encryption (FHE) and other secure computation techniques. The…

Get your tickets now: lu.ma/fhe-org-conf...

#FHE #HomomorphicEncryption #FHE2026

0 0 0 0
Post image

FHE.org would like to thank Niobium Microsystems for their sponsorship this (and last!) year of the FHE.org 2026 conference.

Find out more information about Niobium Microsystems at niobiummicrosystems.com

#FHE #HomomorphicEncryption #FHE2026 #Niobium

0 0 1 0
Preview
FHE in Production w/ Rotem Tsabary · Luma #Abstract Fully Homomorphic Encryption (FHE) has long promised the ability to compute on encrypted data, but real-world deployment has been limited by…

Don't forget to RSVP for this week's FHE.org meetup, featuring Dr. Rotem Tsabary, CEO of Lattica, presenting "FHE in Production".

RSVP at luma.com/FHE.org-085

#FHE #HomomorphicEncryption

0 0 0 0
Post image

FHE.org would like to thank Belfort for their sponsorship this year of the FHE.org 2026 conference.

Find out more information about Belfort at belfortlabs.com

#FHE #HomomorphicEncryption #FHE2026 #Belfort

0 0 1 0
Cloud Computing Services - Amazon Web Services (AWS) Amazon Web Services offers reliable, scalable, and inexpensive cloud computing services. Free to join, pay only for what you use.

FHE.org would like to thank AWS (Amazon) for their continued sponsorship this year (and last!) of the FHE.org 2026 conference.

Find out more information about AWS and what they do over at aws.amazon.com

#FHE #HomomorphicEncryption #FHE2026 #Amazon #AWS

0 0 1 0
Post image

New resource added to FHE.org/resources :

"Exploring Fully Homomorphic Encryption" by Vitalik Buterin.

fhe.org/resources/#0...

Know of an FHE resource that should be shared? Let us know below!

#FHE #homomorphicEncryption #Ethereum

0 0 0 0
Preview
Efficient Homomorphic Matrix Computation for Secure Transformer Inference w/ Miran Kim · Luma #Abstract Homomorphic encryption (HE) enables computation directly on encrypted data without requiring decryption, thereby preserving data confidentiality.…

Join us tomorrow, 4PM CET for an FHE.org meetup featuring Miran Kim, associate professor of the Department of Mathematics at Hanyang University, presenting "Efficient Homomorphic Matrix Computation for Secure Transformer Inference".

RSVP at luma.com/FHE.org-084

#FHE #HomomorphicEncryption #matrix

1 0 0 0

55 submissions (10 talks and 23 posters accepted) and invited speaker Shai Halevi presenting "To Search and Protect: An MPC/FHE Approach to Encrypted Search"

Get your tickets now: lu.ma/fhe-org-conf...

#FHE #HomomorphicEncryption #FHE2026

0 0 0 0
Post image

📢 Just 20 days left until the 5th annual FHE.org conference in Taipei, Taiwan!

You won't want to miss this year's presentations!

#FHE #HomomorphicEncryption #FHE2026

0 0 1 0
Post image

FHE.org would like to thank Lattica for sponsoring the FHE.org 2026 conference.

#FHE #HomomorphicEncryption #FHE2026 #Lattica

0 0 1 0
Post image

FHE.org would like to thank @leastauthority.bsky.social for their continued sponsorship this year (and last!) of the FHE.org 2026 conference.

#FHE #HomomorphicEncryption #FHE2026 #LeastAuthority

2 2 1 0
Preview
FHE in Production w/ Rotem Tsabary · Luma #Abstract Fully Homomorphic Encryption (FHE) has long promised the ability to compute on encrypted data, but real-world deployment has been limited by…

Join us in 2 weeks on Thursday, Feb 26th at 3PM CET for yet another FHE.org meetup, featuring Dr. Rotem Tsabary, CEO of Lattica, presenting "FHE in Production".

RSVP at luma.com/FHE.org-085

#FHE #HomomorphicEncryption

1 0 0 0
Post image

New resource added to FHE.org/resources :

"Accelerating Private Cloud Computing with FIDESlib" by Carlos Agulló-Domingo, Óscar Vera-López, and José L. Abellán.

fhe.org/resources/#0...

Know of an FHE resource that should be shared? Let us know below!

#FHE #homomorphicEncryption #FIDESlib

0 0 0 0
083 Low Communication Threshold FHE from Standard (Module-)LWE w/ Hiroki Okada
083 Low Communication Threshold FHE from Standard (Module-)LWE w/ Hiroki Okada YouTube video by FHE_org

Miss our meetup with Hiroki Okada on "Low Communication Threshold FHE from Standard (Module-)LWE"?

You can watch the recorded presentation here! 👉 www.youtube.com/watch?v=8J6K...

#FHE #HomomorphicEncryption #LWE

0 0 0 0
Post image

FHE.org would like to thank Cammarota Lab, founded by Rosario Cammarota (www.linkedin.com/in/ro-cammar...), for their sponsorship this year of the FHE.org 2026 conference.

RSVP now! luma.com/fhe-org-conf...

#FHE #HomomorphicEncryption #FHE2026 #CammarotaLab

0 0 0 0
Post image

📢 Just 27 days left until the 5th annual FHE.org conference in Taipei, Taiwan!

You won't want to miss this year's invited speaker: Shai Halevi presenting "To Search and Protect: An MPC/FHE Approach to Encrypted Search".

#FHE #HomomorphicEncryption #FHE2026

0 0 1 0