Skip to content

Commit 7ad8d81

Browse files
committed
Initial import
0 parents  commit 7ad8d81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+7666
-0
lines changed

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Michael Schlottke-Lakemper, Arseniy Kholod
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Secure numerical computations using fully homomorphic encryption
2+
3+
[![License: MIT](https://img.shields.io/badge/License-MIT-success.svg)](https://opensource.org/licenses/MIT)
4+
5+
This is the companion repository for the talk
6+
7+
**Secure numerical computations using fully homomorphic encryption**
8+
[*Michael Schlottke-Lakemper*](https://www.uni-augsburg.de/fakultaet/mntf/math/prof/hpsc), *Arseniy Kholod*
9+
JuliaCon 2024, Eindhoven, Netherlands, 10th July 2024
10+
11+
The slides can be found here: [`talk-2024-juliacon-secure_numerical_computations.pdf`](talk-2024-juliacon-secure_numerical_computations.pdf).
12+
13+
## Reproducibility
14+
15+
To reproduce the secure numerical computations shown in the talk, perform the following steps:
16+
17+
### Install Julia
18+
Go to https://julialang.org/downloads and download the latest stable version of Julia (this
19+
repository was created with Julia v1.10.3).
20+
21+
### Get reproducibility repository
22+
Clone this reproducibility repository by executing
23+
```shell
24+
git clone https://github.com/hpsc-lab/talk-2024-juliacon-secure-numerical-computations.git
25+
```
26+
27+
### Start Julia and run code
28+
Go to the cloned repository and start the Julia REPL with
29+
```shell
30+
julia --project=code
31+
```
32+
33+
If you have not done it in a previous session, you need to install all required packages by running
34+
the following code in the REPL (only needed once):
35+
```julia
36+
using Pkg
37+
Pkg.instantiate()
38+
```
39+
40+
To run the examples, include the relevant Julia files from the [`code/`](code) subdirectory in the REPL. More details can be found in the code-specific [README](code/README.md).
41+
42+
## Authors
43+
This repository was initiated by
44+
[Michael Schlottke-Lakemper](https://www.uni-augsburg.de/fakultaet/mntf/math/prof/hpsc) and Arseniy Kholod.
45+
46+
## License
47+
The contents of this repository are licensed under the MIT license (see [LICENSE.md](LICENSE.md)).
48+

0 commit comments

Comments
 (0)