[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -1,89 +1,189 @@
---
id: wiki-2026-0508-secure-multi-party-computation
title: Secure Multi party Computation
title: Secure Multi-party Computation
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [SEC-SMPC-001]
aliases: [MPC, SMPC, Secure Computation]
duplicate_of: none
source_trust_level: A
confidence_score: 1.0
tags: [ai, security, privacy, smpc, secure-multi-party-computation, cryptography, data-privacy]
confidence_score: 0.88
verification_status: applied
tags: [cryptography, privacy, mpc, federated, ai-privacy]
raw_sources: []
last_reinforced: 2026-04-26
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: unspecified
framework: unspecified
language: python
framework: crypten
---
# Secure Multi-party Computation (SMPC, 안전 다자간 연산)
# Secure Multi-party Computation
## 📌 한 줄 통찰 (The Karpathy Summary)
> "개별 데이터를 비공개로 유지하면서도 결합된 결과의 진실만을 추출하여, 신뢰 없는 참여자들 사이에서 '완벽하게 안전한 협력'을 구현하라" — 데이터를 암호학적 파편(Shares)으로 쪼개어 여러 참여자에게 분산시키고, 누구도 원본을 복원할 수 없는 상태에서 공동 연산을 수행하는 기술.
## 한 줄
> **"매 N parties 가 jointly compute f(x1, ..., xN) without revealing inputs"**. Yao 1982 garbled circuits → BGW 1988 secret sharing → modern SPDZ, ABY3, CrypTen for privacy-preserving ML. 매 2026 production: Apple PCC (Private Cloud Compute), Meta CrypTen, Google federated analytics.
## 📖 구조화된 지식 (Synthesized Content)
- **추출된 패턴:** "Secret Sharing and Distributed [[Logic|Logic]]" — 원본 데이터를 무작위 값들의 합으로 나누어 분산 저장하고, 각 참여자가 자신의 파편만으로 연산을 수행한 뒤 결과값의 파편만을 합쳐서 최종 정답을 도출하는 패턴.
- **핵심 메커니즘:**
- **Secret Sharing:** 데이터를 여러 개로 쪼개어 일부만으로는 정보를 알 수 없게 함.
- **Garbled Circuits:** 연산 논리 자체를 암호화하여 처리.
- **Oblivious Transfer:** 수신자가 무엇을 받았는지 송신자가 알 수 없게 데이터를 전송.
- **의의:** 기업 간의 민감 데이터 공유 없이도 공동 시장 분석이나 의료 연구를 수행할 수 있게 하며, 데이터의 가치만 흐르고 정보는 가두는 '신뢰의 프로토콜'을 형성함.
## 매 핵심
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌:** 연산 및 통신 비용이 너무 커서 이론적 유희에 불과하다는 비판을 받아왔으나, 최근에는 암호학적 최적화와 하드웨어 가속을 통해 수천만 건의 데이터를 실시간으로 처리할 수 있는 상용 수준의 프레임워크들이 등장함.
- **정책 변화:** Antigravity 프로젝트는 에이전트 네트워크 간의 지식 전이 학습 시, 개별 사용자의 로컬 데이터를 절대 노출하지 않기 위해 SMPC 기반의 안전한 가중치 취합 방식을 기술적 로드맵에 포함함.
### 매 Primitives
- **Secret sharing** (Shamir): 매 split secret into N shares, t+1 reconstruct.
- **Garbled circuits** (Yao): 매 2-party Boolean circuit evaluation.
- **Homomorphic encryption** (FHE/PHE): 매 compute on ciphertext.
- **Oblivious Transfer** (OT): 매 sender sends 1 of 2, receiver picks without revealing.
## 🔗 지식 연결 (Graph)
- [[Privacy-Preserving-AI|Privacy-Preserving-AI]], [[Federated-Learning|Federated-Learning]]-Foundations, [[Personal-Information-Security|Personal-Information-Security]], [[Trustworthy-AI|Trustworthy-AI]]
- **Raw Source:** 10_Wiki/Topics/AI/Secure-Multi-party-Computation.md
### 매 Threat models
- **Semi-honest** (passive): 매 follow protocol but try to learn.
- **Malicious** (active): 매 deviate arbitrarily — 매 needs MAC/zero-knowledge.
- **Covert**: 매 cheat detected with high probability.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 Modern frameworks
- **CrypTen** (Meta): PyTorch-style MPC for ML.
- **MP-SPDZ**: 매 wide protocol library.
- **TF-Encrypted**: TensorFlow MPC.
- **Concrete** (Zama): TFHE for ML inference.
**언제 이 지식을 쓰는가:**
- *(TODO)*
### 매 응용
1. Privacy-preserving ML inference (medical, financial).
2. Federated learning aggregation (secure aggregation).
3. Private set intersection (ad measurement).
4. Apple PCC: 매 trusted enclave + attestation for LLM.
**언제 쓰면 안 되는가:**
- *(TODO)*
## 💻 패턴
## 🧪 검증 상태 (Validation)
### Shamir secret sharing
```python
import random
from sympy import mod_inverse
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
PRIME = 2**127 - 1
## 🧬 중복 검사 (Duplicate Check)
def share(secret, n, t):
coeffs = [secret] + [random.randrange(PRIME) for _ in range(t-1)]
shares = []
for i in range(1, n+1):
y = sum(c * pow(i, j, PRIME) for j, c in enumerate(coeffs)) % PRIME
shares.append((i, y))
return shares
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
## 🕓 변경 이력 (Changelog)
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 💻 코드 패턴 (Code Patterns)
**패턴 1:** *(TODO: 이 프로젝트 컨벤션 반영한 구조 스켈레톤)*
```text
# TODO
def reconstruct(shares):
secret = 0
for i, (xi, yi) in enumerate(shares):
num, den = 1, 1
for j, (xj, _) in enumerate(shares):
if i != j:
num = (num * -xj) % PRIME
den = (den * (xi - xj)) % PRIME
secret = (secret + yi * num * mod_inverse(den, PRIME)) % PRIME
return secret
```
## 🤔 의사결정 기준 (Decision Criteria)
### CrypTen ML inference
```python
import crypten
import torch
**선택 A를 써야 할 때:**
- *(TODO)*
crypten.init()
**선택 B를 써야 할 때:**
- *(TODO)*
# Two parties: server has model, client has input
@crypten.mpc.run_multiprocess(world_size=2)
def private_inference():
model = crypten.nn.from_pytorch(my_model, dummy_input)
model.encrypt(src=0) # server holds model
**기본값:**
> *(TODO)*
x_enc = crypten.cryptensor(client_input, src=1) # client input
y_enc = model(x_enc)
y = y_enc.get_plain_text() # decrypt result
return y
## ❌ 안티패턴 (Anti-Patterns)
private_inference()
```
- **[안티패턴]:** *(TODO: 무엇을 하면 안 되는가 + 이유 + 대신 무엇을)*
### Secure aggregation (federated learning)
```python
def secure_aggregate(client_updates, threshold):
# Each client masks update with random pad shared via DH
n = len(client_updates)
masks = [generate_pairwise_masks(i, n) for i in range(n)]
masked = [u + sum(masks[i]) for i, u in enumerate(client_updates)]
# Server sums — masks 매 cancel out
return sum(masked) # 매 individual updates 매 hidden
```
### Garbled circuit (Yao 2PC)
```python
def garble_AND():
# 매 circuit: z = x AND y
keys = {(b1, b2): random.randbytes(16) for b1 in [0,1] for b2 in [0,1]}
output_keys = {0: random.randbytes(16), 1: random.randbytes(16)}
table = []
for (b1, b2), k_in in keys.items():
z = b1 & b2
ct = aes_encrypt(k_in, output_keys[z])
table.append(ct)
random.shuffle(table)
return table, output_keys
```
### TFHE inference (Zama Concrete)
```python
from concrete import fhe
@fhe.compiler({"x": "encrypted"})
def relu(x):
return fhe.maxes(x, 0)
circuit = relu.compile([(i,) for i in range(-128, 128)])
encrypted = circuit.encrypt(-5)
result = circuit.run(encrypted)
print(circuit.decrypt(result)) # 0
```
### Private set intersection
```python
def psi_dh(a_set, b_set):
# Diffie-Hellman based PSI
a_secret, b_secret = random_scalar(), random_scalar()
A_blinded = [hash_to_curve(x) ** a_secret for x in a_set]
B_blinded = [hash_to_curve(y) ** b_secret for y in b_set]
A_double = [p ** b_secret for p in A_blinded]
B_double = [p ** a_secret for p in B_blinded]
return set(A_double) & set(B_double)
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| 2-party ML inference | 매 Garbled circuits 또는 CrypTen |
| N-party aggregation | 매 Secret sharing (BGW, SPDZ) |
| Single ciphertext compute | 매 FHE (Concrete, Microsoft SEAL) |
| Trusted hardware available | 매 TEE (SGX, Apple PCC) — 매 fastest |
| Production LLM privacy | 매 Apple PCC pattern (TEE + attestation) |
**기본값**: 매 ML inference 면 CrypTen (semi-honest 2PC), 매 production privacy LLM 면 TEE-based (Apple PCC).
## 🔗 Graph
- 부모: [[Cryptography]] · [[Privacy-Preserving ML]]
- 변형: [[Garbled Circuits]] · [[Secret Sharing]] · [[Homomorphic Encryption]]
- 응용: [[Federated Learning]] · [[Apple PCC]] · [[Private Set Intersection]]
- Adjacent: [[Differential Privacy]] · [[Zero-Knowledge Proofs]] · [[Trusted Execution Environment]]
## 🤖 LLM 활용
**언제**: 매 multi-party data joint analysis, 매 client-side model with private data, 매 medical/financial cross-org compute.
**언제 X**: 매 single-party compute (DP 면 충분), 매 latency-critical (MPC 매 100-1000× slower).
## ❌ 안티패턴
- **Semi-honest in production**: 매 malicious adversary 가능 면 fail.
- **MPC for everything**: 매 100× overhead — TEE 가 better when available.
- **Naive secret sharing**: 매 multiplication 매 expensive (Beaver triples 필요).
- **Ignoring side-channels**: 매 timing/power leak — 매 protocol-only 매 부족.
## 🧪 검증 / 중복
- Verified (Yao 1982, BGW 1988, Damgård SPDZ 2012, CrypTen 2020).
- Apple PCC technical paper 2024.
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — primitives, modern frameworks, Apple PCC 추가 |