forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ethereum#15 from zama-ai/feature/add_fhe_operation…
…s_add_encrypt_decrypt Feature/add fhe operations add encrypt decrypt
- Loading branch information
Showing
4 changed files
with
317 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
|
||
rm -rf tfhe-rs | ||
rm core/vm/lib/libtfhe.* | ||
rm core/vm/tfhe.h |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
git clone git@github.com:zama-ai/tfhe-rs.git | ||
mkdir -p core/vm/lib | ||
cd tfhe-rs | ||
make build_c_api | ||
cp target/release/libtfhe.* ../core/vm/lib | ||
cp target/release/tfhe.h ../core/vm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters