Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,12 @@ Source code adapted from [C++ source code published here](https://www.sanfoundry

1) Install the OpenFHE library on your machine by following the [official documentation](https://openfhe-development.readthedocs.io/en/latest/sphinx_rsts/intro/installation/installation.html). Do note that the following example has not been tested on windows or macOS.

2) Clone this repo to your local system and `cd` into it

```
git clone git@github.com:openfheorg/openfhe-integer-examples.git
cd openfhe-integer-examples
```
2) Clone this repo to your local system

3) Build this code

```
mkdir build
mkdr build
cd build
cmake ..
make
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
add_executable( strsearch_enc_1 strsearch_enc_1.cpp)
add_executable( strsearch_enc_2 strsearch_enc_2.cpp )
add_executable( strsearch_enc_2 strsearch_enc_2.cpp)
Loading