Skip to content

Commit

Permalink
Merge pull request #13 from zama-ai/petar/license
Browse files Browse the repository at this point in the history
Add license header to src files
  • Loading branch information
dartdart26 committed Jul 21, 2023
2 parents 6a0c4ec + 4e371af commit fbbe182
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ciphertext_types.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// BSD 3-Clause Clear License
//
// Copyright © 2023 ZAMA.
// All rights reserved.

use std::collections::HashMap;

use tfhe::{
Expand Down
5 changes: 5 additions & 0 deletions src/gen_keys.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// BSD 3-Clause Clear License
//
// Copyright © 2023 ZAMA.
// All rights reserved.

use tfhe::{
generate_keys, shortint::parameters::PARAM_SMALL_MESSAGE_2_CARRY_2_COMPACT_PK, ClientKey,
CompactPublicKey, ConfigBuilder, ServerKey,
Expand Down
5 changes: 5 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
// BSD 3-Clause Clear License
//
// Copyright © 2023 ZAMA.
// All rights reserved.

pub mod ciphertext_types;
pub mod gen_keys;
5 changes: 5 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// BSD 3-Clause Clear License
//
// Copyright © 2023 ZAMA.
// All rights reserved.

use std::{fs::File, io::Read};

use clap::{Parser, Subcommand};
Expand Down

0 comments on commit fbbe182

Please sign in to comment.