8/14/2026 at 4:55:17 PM
My master's thesis is on a topic in this field (Privacy Preserving ML) and from my understanding HE and other techniques have very high overheads(~10^3) on inference tasks and thus aren't very commercially viable.by sabretooth1405
8/14/2026 at 6:10:22 PM
To throw out some real and up-to-date numbers from [1] for FHE at "128-bit security level", to sort 8x 8-bit unsigned integers on the most ordinary of desktop PCs, wait 3 seconds for the result. Want to sort 32x 8-bit unsigned integers instead? Come back 34 seconds later for the result.update: also see [2] for some primitive unsigned 64-bit integer operation benchmarks with the TFHE-rs library (winner in the sorting performance comparison of [1]). Equality at 80ms, addition and subtraction at 100ms, division at 8 seconds, etc.
[1] https://eprint.iacr.org/2026/1495.pdf Oblivious Sorting under Fully Homomorphic Encryption: A Comprehensive Survey and Performance Analysis, Omar Ahmed and Rostin Shokri and Nektarios Georgios Tsoutsos, 2026
[2] https://docs.zama.org/tfhe-rs/tfhe-rs/1.0/get-started/benchm...
by dhx
8/14/2026 at 10:00:01 PM
It’s slightly better for LLMs because FHE is really bad at branches (it ends up essentially having to try both branches), making sorts nearly the worst possible thing to try since it’s all branches. In the case of AI most things are just addition and multiplication which can make some things faster since there aren’t as many branches. But we’re still nowhere near viability.by odo1242
8/15/2026 at 2:39:51 AM
The flip is also true: LLM inference is very nearly maximally optimal for FHE. Thee costly bit, multiplication of a bunch of compressed floating point numbers, translates 1:1. The only bit I’m not sure about is the softmax sampling at the end, but that’s just once per token.On the other hand, each FHE step is a LOT more costly (e.g. elliptic curve exponentiation) than a vectorized BF8 multiply on GPU.
Unlike the sorting number case, it is probably same complexity. But no hardware support AND a massive slow down constant even if you were comparing apples to apples on hardware.
Disclaimer: I spent a decade working on crypto systems but I am not familiar with TFA’s research.
by adastra22
8/15/2026 at 5:57:21 AM
Softmax is once per token per a layer, and growing linearly with context window size (therefore quadratic over full input).by skew-aberration
8/15/2026 at 9:10:01 AM
That's softmax dot-product attention. It's quadratic even without fully-homomorphic encryption, but at least it's not inherently branchy, so won't necessarily slow down much more than other floating point operations under encryption.But softmax sampling, where you pick a single output token at the end and feed it back in to generate the next one, is branchy, so you need to do some extra encrypted computation to avoid leaking which token was sampled.
by yorwba
8/15/2026 at 2:34:17 PM
Assuming the client is online, you could offload the costly FHE sampling by handing them the raw logits.by covoeus
8/15/2026 at 4:54:45 AM
I found [1] which appears to offer state-of-the-art performance of ~1000s latency for a FHE GPT-2 transformer block, equating I think to 3.33h inter-token latency (0.00008 token/s) for GPT-2(small) which has 12 transformer blocks. This result is using optimised packed arithmetic operations on a GPU as well--so seemingly is unlikely to have much performance upside from further optimisation.I'm not sure I've interpreted [1] correctly though, and would appreciate correction if necessary.
[1] https://arxiv.org/pdf/2604.04783 -- GPU Acceleration of TFHE-Based High-Precision Nonlinear Layers for Encrypted LLM Inference -- Guoci Chen, Xiurui Pan, Qiao Li, Bo Mao, Congming Gao, Chengying Huan, Mingzhe Zhang, Jie Zhang -- Apr 2026
by dhx
8/15/2026 at 9:55:36 AM
Sorting doesn't need any branches. For FHE you need to think like a circuit designer without indexing operations. In that situation your default sort is a sorting network, made out of nlogn conditional swaps.by Dylan16807
8/15/2026 at 9:59:39 AM
can you build a conditional swap in FHE in a small size though? FHE is always circuit like, ie no dynamic control flow anyway I think?by justincormack
8/15/2026 at 10:12:03 AM
Once you calculate which value is smaller, the conditional swap itself is trivial. Let's say inputs A and B, comparison result is a boolean C. Outputs X and Y.Bitwise: X = A&C | B&¬C, Y = A&¬C | B&C
Arithmetic: X = A*C + B*(1-C), Y = A*(1-C) + B*C
Edit: Or to put it another way, one of the most basic things you can make in a circuit is a multiplexer, and a conditional swap is two minimum size multiplexers next to each other.
by Dylan16807
8/15/2026 at 1:11:27 AM
I’m genuinely not an expert, but isn’t the beauty of MoE models the fact that we explicitly don’t evaluate every parameter on inference? We evaluate exactly the subset that are needed to evaluate a prompt. Seems like this will bring back data-dependent branches again.by matthewdgreen
8/15/2026 at 1:32:57 AM
It would also kill speculative decoding. You would have to run a full inference pass for every token instead of being able to generate multiple tokens with a single pass.by charcircuit
8/15/2026 at 3:22:14 PM
Pretty much, and this does a good job of illustrating the fundamental issue with branching. You could use an encryption scheme that allows the server to determine what MoE expert to load (the simplest would be to have the client decode the value and send it back to the server, though this can sometimes be possible to do without the round trip), but then it’s not fully homeomorphic because the server has some info about the computation that could be used to recover stuff about the original text.Taking the above point to the extreme, a very simple yet mildly effective “homeomorphic encryption” scheme would be to run the first layer(s) of the ML model on-device, run the majority of the model in cloud, then run the remainder of the model on the device. But then you leak a lot of information that can essentially be used to get back the original text. (Usually in this type of scheme, to defend against this, the provider of cloud services doesn’t have access to the full model, it’s been used before on vision applications involving medical data)
by odo1242
8/14/2026 at 9:15:46 PM
That is sobering for sure, I wonder what the theoretical bounds are on what is possible if known. Would be such a dream to use a Frontier LLM one day with homomorphic encryption, but this sounds wildly implausible based on where things are today.by tbenst
8/14/2026 at 11:20:29 PM
they would never allow it, atleast not for regular plebs such as you or I, consider if you made it say something politically incorrect? cant have thatby redeeman
8/14/2026 at 9:56:39 PM
We’re not even close to the limits of AI optimization so finding the theoretical bounds is going to have to waitby joshspankit
8/14/2026 at 8:02:39 PM
Benchmarking code in repo: https://github.com/google/heir/tree/main/benchmarkProject intro talk from 2023: https://www.youtube.com/watch?v=kqDFdKUTNA4
by pamcake
8/14/2026 at 9:17:38 PM
The first link has a misleading name. Instead use these two links for a better picture:https://github.com/google/fully-homomorphic-encryption/tree/...
by j2kun
8/14/2026 at 11:30:35 PM
This seems a fine tradeoff to me, depending on the context. There are datasets and operations on them where speed being sacrificed for privacy/security seems appropriate.Ideally, give me a dial, to ask for encrypted intelligence when I need it. Kind of like a private chat, but with deeper privacy protections.
by randomImmigrant
8/14/2026 at 11:48:00 PM
Except that's for pathetically small datasets.What real datasets exist where this would be a worthwhile trade off versus simply owning the hardware?
The numbers are so bad that underpowered local hardware would still beat it.
by XorNot
8/15/2026 at 9:29:55 AM
yep I can beat 0.0008 tokens/s on GLM-5.2 on my CPUby inigyou
8/14/2026 at 5:37:39 PM
The article conspicuously fails to go into much detail about that. I poked around with an AI a bit (to rapidly cover all the linked pages) and it seems the best numbers we can get are from this arxiv paper: https://arxiv.org/html/2506.18150v4 Which says:"We evaluate HE-LRM on UCI (health prediction) and Criteo (click prediction), achieving inference latencies of 24 seconds on UCI and 228 to 489 seconds, respectively, on a single-threaded CPU."
There don't seem to be any direct comparisons available, probably because nobody else has any reason to limit themselves to one single-threaded CPU with normal techniques, but for reference the AI seems to expect that normal times for conventional setups are in the milliseconds range, fairly comfortably, even on CPU. I didn't find a clean primary source to link to for this claim, but clicking through various things that don't cleanly state the situation it did seem plausible. So we seem to still be in the range of single-digit orders of magnitude slower, possibly as much as 5 or 6, which is to say, we're still talking the range where we need to take the log of the difference to get sensible numbers, we're not using percentages.
(To run it yourself, I basically just fed the URL from the HN link, mentioned that FHE is known to be slow, and asked if anything linked in the blog post gave concrete times.)
by jerf
8/14/2026 at 6:50:37 PM
The linked repository has demos you can run (though you have to install bazel), and some of the smaller models run inference in about a second, while the larger ones take minutes.That said, there is a lot of ongoing work on GPU acceleration. Cf. the recent FHE-based CIFAR demo that runs in 200ms: https://sofar.belfortlabs.cloud/
Still maybe 1000x slower than cleartext, but progress!
by j2kun
8/17/2026 at 2:28:21 PM
With GPU acceleration, that 228 to 489s becomes a fraction of a second :)https://belfortlabs.com/blog/belfort-partners-with-lg-on-enc...
by laksjd
8/14/2026 at 5:35:46 PM
1000x slowdown is bad but not a complete deal breaker. Do you have a sense of what a reasonable achievable factor is? Do you have sense for how long before we get to that achievable factor?by abetusk
8/14/2026 at 8:10:09 PM
It's a ridiculous waste of energy, just use local compute.by jacquesm
8/15/2026 at 9:20:04 AM
Local compute is preferable where possible. There are cases where computation needs to be performed remotely. For example, when collecting data from remote entities while preserving privacy by allowing each entity to retain ownership of the encryption keys used to protect its data. At Belfort, we are exploring such applications, such as- https://belfortlabs.com/blog/belfort-partners-with-lg-on-enc... - https://belfortlabs.com/blog/encrypted-fraud-detection-with-...
by furkanturan
8/15/2026 at 9:38:26 AM
For me it is the simplest reasons of all: privacy / confidentiality. There is absolutely no way any of this data leaves my systems.by jacquesm
8/15/2026 at 4:36:55 AM
Good point, but if we can advance research on this via the AI bubble, it could improve privacy in other areas.by joquarky
8/14/2026 at 5:59:01 PM
Commercially viable for Google boils down to can they attribute ads behaviors to it or not.Then there’s a second tier of things that just make those wheels turn and if they do or don’t make ads revenue is nominally immaterial.
The teams doing this stuff at Google are purely for show, none of this makes it into any real products.
There’s the narrow exception of stuff like gboard, that does use privacy preserving ML/fed learning, but this stuff isn’t in the same zone.
I find it a bit embarrassing when Google publishes this stuff to be honest.
by bevekspldnw
8/14/2026 at 8:16:45 PM
GCP exists, friend. Right now industries are locked out of AI tools due to privacy laws.If Google Cloud can offer FHE-powered tools, a hospital can run Google’s AI diagnostic models on encrypted brain scans without violating privacy laws.
FHE effectively removes the primary regulatory barrier keeping enterprise customers off the cloud.
by asdfman123
8/14/2026 at 8:46:25 PM
At that kind of amount of waste putting 2U server with some GPUs in hospital would be cheaperby PunchyHamster
8/14/2026 at 8:55:03 PM
Making things 10x more expensive to reduce legal liability is what hospitals are all aboutby asdfman123
8/15/2026 at 6:23:04 PM
We're not talking about 10x though, that's off by two orders of magnitude. This isn't a $200 bag of saline water, it's a $20,000 bag of saline water.by anonym29
8/14/2026 at 8:11:18 PM
Autonomous driving was all show until Waymo happened AI research was all show until transformers happened. Quantum research is all show until ..and now this.
Part of changing the world involves imagining a changed-world.
by bitpush
8/15/2026 at 4:31:08 AM
Cold fusion and room temperature superconductors (remember LK-99?) were also all show.by joquarky
8/15/2026 at 2:08:48 PM
You can't prove the theory by providing an agreeing example though.That for some cases they are still all show doesn't prove everything is all show.
by avmich
8/15/2026 at 9:27:25 AM
Sometimes I feel like 75% of their engineers are working on stuff that is purely for show. If their product doesn't generate enough profit very short term they stop it immediately. They have hunderds of cancelled projects, and those are only the ones which have existed. I wonder how many things they made internally and killed before ever showing it publicly.by alpaca9
8/14/2026 at 6:00:24 PM
You are very wrong about all of this btw.by luckydata
8/14/2026 at 6:36:52 PM
You literally don’t know who I am or the roles I had. So unless you can tell me how many steps you were from Kent Walker and what you worked on I’m gonna bet a hell of a lot I know more than you.Edit to clarify my prior point: some of the technology makes it into the product, but the putative data protections do not.
Why?
Because there is always a work around, and ads legal will approve it every time.
by bevekspldnw
8/14/2026 at 10:01:43 PM
Google is too internally split up to have a single cohesive "maximize ad revenue" mission, especially now that cloud is the new golden goose and the future of search/advertising is hazy.If cloud can sell compute to enterprise that can only use FHE, then they will not give a fuck if the ad goons are disgruntled about it.
by WarmWash
8/15/2026 at 2:30:47 AM
You have the CEO and the VPs who have final call when there are disputes below.Ads doesn’t care until something affects them, GCP doesn’t.
by bevekspldnw
8/14/2026 at 11:02:23 PM
you are 100% correct, this product is to enable things like healthcare and generally AI subscription stuff that otherwise people wouldn't touch because of sensitivity to disclosing sensitive data.by luckydata
8/15/2026 at 12:55:54 AM
Given that Google has a single unit that does $76 billion in annual revenue, $100 billion projected, without ads, raises questions about how relevant your knowledge is.by antonvs
8/15/2026 at 2:27:57 AM
I should have bracketed out GCP as a theoretical application for this. I was referring to the Google consumer extended universe.by bevekspldnw
8/15/2026 at 2:45:08 AM
Which is also learning how to monetize their offering via cloud instead of ads. So again your expertise here is questionable.by surajrmal
8/15/2026 at 5:43:48 PM
Question away, not bothered.by bevekspldnw
8/15/2026 at 1:51:57 PM
Ads does not have access to GCP data and there is no way legal would approve oneby sumeno
8/15/2026 at 10:23:21 AM
The distance between Kent Walker and Thomas Kurian is what you should be asking.by fragmede
8/14/2026 at 8:12:07 PM
> You literally don’t know who I am or the roles I had.I'm now curious. Who are you?
by bitpush
8/15/2026 at 2:26:19 AM
Saying that would make it unable for me to use HN as certain companies monitor my social media comments.by bevekspldnw
8/14/2026 at 9:12:27 PM
yeah and I'm a Navy seal with over 300 confirmed kills etc.by trucks-refinish
8/14/2026 at 8:25:43 PM
and you don't know who I am. I might have been closer to that work than you would know.by luckydata
8/15/2026 at 5:45:10 PM
The work I’m guessing yes you are aware, but not the legal side of how they allow ads to circumvent the dog and pony show you put your life into.Thats the embarrassing part, you know “don’t be evil” went out the window years ago, yet still think you’re making a difference with your little bit shifting games. As if the moment the work you do bumped against against revenue it would hold.
by bevekspldnw
8/17/2026 at 3:51:01 PM
when I worked at google I was known to be a very effective "legal whisperer". I spent more time in legal reviews in the last decade than you'll ever spend in the entirety of your life as I was working on infrastructure dealing with tons of PII working across the globe. I'm pretty sure I know what I'm talking about here.by luckydata
8/15/2026 at 11:22:33 AM
Why don't you say what they are wrong about then?by Chris2048
8/17/2026 at 3:49:21 PM
every single word. this is a project to enable private AI use cases which is a very real concern for a lot of enterprise customers dealing with highly sensitive data (think about healthcare and police work for example) and has nothing to do in any way shape or form with ads. The guy probably used to work or still works at Google but doesn't mean he understands what he's talking about.by luckydata
8/15/2026 at 1:02:45 AM
I'm Ron Burgundy ?by Melatonic
8/14/2026 at 11:38:46 PM
I saw a paper about this in early 2020 (pre-COVID shutdowns) at the ScaledML conference. I looked into it and had the same conclusions. At some point, running your own models in the clear is just more practical.by elgertam
8/15/2026 at 7:18:08 AM
Only 1000x overhead would make some image classification tasks go from 1ms to 1s. That’s viable for some applications!by petters
8/15/2026 at 9:14:33 AM
Exactly. That is what we have today at Belfort; not enough for making all AI work privacy preserving, but fast enough for many applications, where otherwise unencrypted compute is not acceptable.by furkanturan
8/14/2026 at 5:39:29 PM
That's the reason for HEIR like optimization and parameter selection.It narrows the 10^3 - 10^6 penalty to 10x - 100x.
by u1hcw9nx
8/14/2026 at 10:05:57 PM
Thoughts on whether HE could be further hardware accelerated?by glaslong
8/14/2026 at 7:49:41 PM
Which seems massively worse than a real local device in fact 2x is probably untenable to the point of uselessness because actually privacy sensitive matters need actual privacy that can't be defeated by your government telling Google to serve you compromised js and spy on you anyway and most people don't give 2 shits about privacy so they won't pay 10% more let alone 2x.I'm glad people fund things that are only of interest to nerds but this will never be useful.
by michaelmrose
8/14/2026 at 9:07:29 PM
I think you have completely wrong use cases in mind. You will not use this for normal compute workloads.Typical use cases are for doing biometric authentication without giving your biometric information, or sensitive queries using medical information. Apple has homomorphic encryption in image search. You can use your own photos encrypted into the cloud to search for landmarks in the image without revealing photos.
People can also coordinate and compare information without sharing sensitive data.
by u1hcw9nx
8/15/2026 at 8:27:27 PM
Yeah, for simple calculations on medical data or whatnot, FHE is a highly useful tool. I do wonder, will indistinguishability obfuscation or witness encryption ever be a viable scheme?by cryptographical
8/17/2026 at 10:47:43 PM
But for some fields, almost EVERYTHING they touch is sensitive. I've been reviewing PPML for wildlife management purposes, which my brother is involved in and my other brother, a ML expert, may want to be involved in.With wildlife management, you're dealing with health issues, like rabies outbreaks. That requires privacy. You want to preserve customer confidentially because it's often embarassing. And private property cameras and sensors can leak information about private citizens or kids in a neighborhood without appropriate social and technical protections.
There are hundreds of fields like this. Not just healthcare and policing.
We are likely to see a lot of the hardware required for this to move out into space data centers for batch jobs at least.
And along with that calls for reduced RF and light pollution like StarLink.
And that is going to be helped by a large number of angry liberal citizens who are being riled up about data centers. And that anti-tech rhetoric is already leading to violent responses and debate.
Which hurts the liberal cause for universal healthcare. Conservatives see angry liberal anti-tech actions and tarnish calls for healthcare reform and other liberal causes.
The people who are going to benefit the most from cheaper PPML in orbiting data centers are in many ways making it harder for the rest of us.
It's not a small issue, and I wish I had had the reputation to reduce the anger.
It seems unrelated to PPML. But PPML is a clever political gas pedal to get space control.
by jgerrish
8/14/2026 at 11:40:03 PM
Is that (LLM) AI, though?by lupire
8/15/2026 at 11:40:09 AM
One of the biggest problems IMHO is that they aren't trying to usefully accelerate it on anything other than specialty hardware or 64+ core EYPCs so nobody gets to play with it at home.ex: A 7900XTX barely gets 0.5 TOPS of u/i64 naively w/ hip-direct, 5-10s just to bootstrap!
I needed more throughput for non-crypto i64 diff eqs so I slopped up a lib that uses RNS & CRT w/ Int8 GEMM... it's good for ~3.9 TOPS (~90% theoretical peak of the RDNA3) at prod relevant FHE sizes (2048/4096). This lowers bootstrap time to 200-500ms. It was basically free real estate lol
It isn't done yet (not worth the heat in the summer), going to finish it in the fall. Have been accumulating cloud credits to do CDNA3/4 validation in the meantime (If anyone has some to offer do let me know!)
It's neat but very dry, uses semantic contracts so you tell it what kind of mult you need and it chooses the validated best backend. If you're doing lots of smaller ops (512, 1024) it will use custom WMMA/MFMA kernels, dual issue, and grouped dispatch to land >70x over hip-direct.
by monster_truck
8/14/2026 at 8:07:51 PM
The primary path to speed ups appear to be in custom ASICs by startups like Niobium. Combined with the recent Taalas acquisition by AMD, I think I see where this is going.But yeah, for hot path traffic it's probably going to be swamped by the input data rate. But I expected identity tables and cached lookup data will need to be a core component so duplicate checks is avoided in every way available.
by Fordec
8/15/2026 at 9:22:19 AM
Count Belfort too. In addition to our GPU acceleration efforts, we have ongoing ASIC initiatives to further accelerate encrypted compute.by furkanturan
8/14/2026 at 5:50:02 PM
Do you think that’s like a fundamental limit or something that will improve with time and new algorithms?by clayhacks
8/14/2026 at 8:30:45 PM
I wouldn't be very bullish.Homomorphic encryption got significantly efficient with the first few iterations, but I don't really see the necessary orders of magnitude savings coming soon. You could reduce this by some partial encryption schemes (e.g., for LLMs you need a handful of basic operations) but a better alternative already exists: multi-party computation.
Source: I did research in this area in the past.
by bhu8
8/14/2026 at 5:33:06 PM
Exactly my concern, and worse overhead that what I recalled.Cost-wise the only viable private compute is local compute. It's more expensive than cloud, but true private compute in the cloud is definitely pricier.
by dietr1ch
8/14/2026 at 9:34:18 PM
The one that I'm waiting for is a women's period tracking app that uses FHE on the backend to be fully private.by fragmede
8/14/2026 at 11:40:44 PM
Why on earth do you need a backend for this? The backend only exists because it leaks the data.by lupire
8/15/2026 at 7:00:40 AM
because you lose your phone and don't have access to the account anymore.by fragmede
8/15/2026 at 8:11:02 AM
Then the app can make a bog-standard encrypted-at-rest backup to somewhere and make all the computations on the device on the cleartext data.I don't see the need to do computations on the encrypted data here, which is what FHE would provide in addition to traditional encryption.
> and don't have access to the account anymore.
This would be trouble with or without FHE. Even if the backend wouldn't need to decrypt the data, the user will - so as soon as you actually want to show something in the app, you have the same key management problems as without FHE.
by xg15
8/15/2026 at 10:52:44 AM
Okay, so the platform becomes valuable to its users when it's able to suggest things like "based on millions of users, people with cycles like yours typically ovulate around day 16."In order to do the data mining in order to make those kinds of claims, traditionally you'd need to have access to the data.
As you point out, encrypted-at-rest is solved. But what about when it's not at rest?
In-use and in-transit is when FHE kicks in. Sure, you could just do it locally, but then you miss out on the aggregate data mining. Not for advertisers, but because it helps women with their bodies. The compelling product claim is "we literally cannot read your period data." Not "we pinky swear not to" but "we actually really really actually can't!"
by fragmede
8/15/2026 at 11:43:29 AM
If you can trust the app/platform developers to send encrypted anonymised personal data, then how can you trust them to properly use FHE personal data?> "we literally cannot read your period data."
If the purpose is aggregated data for statistic, then surely the only per-user data they need centrally can already be aggregated (to some degree) on the device, e.g. send back only statistical-distribution variables of the personal data, for distributions over the 3-4 months? And at some point, does the service need to keep collecting data, once the model is good enough (at predicting ovulation etc)?
Another concern would be: If they are building a model, using user data, why should they own the model and thus monetise it (i.e. sell it back to its users) when users get no compensation for supplying that data in the first place.
A flow-tracking app should just stick to that, and purchase the model (for a fee) from a third party. The third party should concern itself with how to get the data without being able to leverage its position as a flow-app maintainer to trick or mislead the majority of its users into giving them free data.
by Chris2048
8/15/2026 at 12:07:03 PM
> Okay, so the platform becomes valuable to its users when it's able to suggest things like "based on millions of users, people with cycles like yours typically ovulate around day 16."I don't know much about period tracking apps, but is this really the main reason people install those apps? Wouldn't you be able to get similar results by simply monitoring (on-device) the cycle of the person who uses the app for a few months?
How do those apps work before they have millions of users?
All the warnings I've seen about period tracking apps were about unexpected data collection of the entered data. This would be pretty silly if the data collection was integral to what the user expects the app to do.
> Sure, you could just do it locally, but then you miss out on the aggregate data mining.
Ok, a bit of a technical question about FHE here: My understanding of FHE was that you have input data encrypted with some key (plus auxiliary inputs, if needed, that are not encrypted), then you do operations on that data and get a result that is (still) encrypted by that same key.
No questions there as long as you're dealing with a single key.
But the whole point of aggregation and data mining is to combine data from many different users, i.e. inputs that are encrypted by many different keys. Does that work with FHE at all? And if yes, by which key is the aggregation result encrypted?
I don't see how that would work without either "moving" data from one key to another - which would be practically equivalent to decryption - or getting a result that is simultaneously encrypted by all user keys, i.e. practically useless because no one could individually decrypt it.
> The compelling product claim is "we literally cannot read your period data." Not "we pinky swear not to" but "we actually really really actually can't!"
You could obviously read the data enough to do aggregations on it.
If you can do that for "good" purposes, what stops you to use the same aggregation algorithm for advertisers - except pinky promises again?
by xg15
8/14/2026 at 10:01:59 PM
Saving your comment for the Weekend Project idea backlog, if you don't mind :)by glaslong
8/15/2026 at 12:11:41 PM
Do you mind sharing your master's thesis? oOWould be interesting to read it (and no judgement!)
by therealmarv
8/15/2026 at 6:41:45 AM
It might still be useful for classification usecasesby Jabrov
8/14/2026 at 10:22:00 PM
Sounds like the start of every journey. With all respect to your thesis, I probably put my chips on Google's research and security teams.by mrcwinn