123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- from openfhe import *
- ## Sample Program: Step 1: Set CryptoContext
- cc = BinFHEContext()
- # We use the STD128 setting optimized for the LMKCDEY mode.
- cc.GenerateBinFHEContext(STD128,LMKCDEY)
- ## Sample Program: Step 2: Key Generation
- # Generate the secret key
- sk = cc.KeyGen()
- print("Generating the bootstrapping keys...\n")
- # Generate the bootstrapping keys (refresh and switching keys)
- cc.BTKeyGen(sk)
- print("Completed the key generation.\n")
- # Sample Program: Step 3: Encryption
- """
- Encrypt two ciphertexts representing Boolean True (1).
- By default, freshly encrypted ciphertexts are bootstrapped.
- If you wish to get a fresh encryption without bootstrapping, write
- ct1 = cc.Encrypt(sk, 1, FRESH)
- """
- ct1 = cc.Encrypt(sk, 1)
- ct2 = cc.Encrypt(sk, 1)
- # Sample Program: Step 4: Evaluation
- # Compute (1 AND 1) = 1; Other binary gate options are OR, NAND, and NOR
- ctAND1 = cc.EvalBinGate(AND, ct1, ct2)
- # Compute (NOT 1) = 0
- ct2Not = cc.EvalNOT(ct2)
- # Compute (1 AND (NOT 1)) = 0
- ctAND2 = cc.EvalBinGate(AND, ct2Not, ct1)
- # Compute OR of the result in ctAND1 and ctAND2
- ctResult = cc.EvalBinGate(OR, ctAND1, ctAND2)
- # Sample Program: Step 5: Decryption
- result = cc.Decrypt(sk, ctResult)
- print(f"Result of encrypted computation of (1 AND 1) OR (1 AND (NOT 1)) = {result}")
|