tenseal


Nametenseal JSON
Version 0.3.14 PyPI version JSON
download
home_pagehttps://github.com/OpenMined/TenSEAL
SummaryA Library for Homomorphic Encryption Operations on Tensors
upload_time2023-01-09 06:28:46
maintainer
docs_urlNone
authorOpenMined
requires_python
licenseApache-2.0
keywords homomorphic encryption tensor deep learning privacy secure
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<h1 align="center">
  <br>
  <a href="http://duet.openmined.org/"><img src="https://github.com/OpenMined/design-assets/raw/master/logos/OM/mark-primary-trans.png" alt="TenSEAL" width="200"></a>
  <br>
  TenSEAL
  <br>
</h1>

<h3 align="center">
  <br>
  A library for doing homomorphic encryption operations on tensors
  <br>
</h3>

<div align="center">

[![Tests](https://github.com/OpenMined/TenSEAL/workflows/Tests/badge.svg)](https://github.com/OpenMined/TenSEAL/actions?query=branch%3Amaster++)
[![Linux Package](https://github.com/OpenMined/TenSEAL/workflows/Linux%20Package/badge.svg)](https://github.com/OpenMined/TenSEAL/actions/workflows/pythonpublish-linux.yml)
[![MacOS Package](https://github.com/OpenMined/TenSEAL/workflows/MacOS%20Package/badge.svg)](https://github.com/OpenMined/TenSEAL/actions/workflows/pythonpublish-macos.yml)
[![Windows Package](https://github.com/OpenMined/TenSEAL/workflows/Windows%20Package/badge.svg)](https://github.com/OpenMined/TenSEAL/actions/workflows/pythonpublish-windows.yml)


[![Downloads](https://img.shields.io/pypi/dd/tenseal)](https://pypi.org/project/tenseal/)
[![Version](https://img.shields.io/pypi/v/tenseal)](https://pypi.org/project/tenseal/)
[![OpenCollective](https://img.shields.io/opencollective/all/openmined)](https://opencollective.com/openmined)
[![Slack](https://img.shields.io/badge/chat-on%20slack-7A5979.svg)](https://openmined.slack.com/messages/support)


</div>

TenSEAL is a library for doing homomorphic encryption operations on tensors, built on top of [Microsoft SEAL](https://github.com/Microsoft/SEAL). It provides ease of use through a Python API, while preserving efficiency by implementing most of its operations using C++.

## Features

- :key: Encryption/Decryption of vectors of integers using BFV
- :old_key: Encryption/Decryption of vectors of real numbers using CKKS
- :fire: Element-wise addition, subtraction and multiplication of encrypted-encrypted vectors and encrypted-plain vectors
- :cyclone: Dot product and vector-matrix multiplication
- :zap: Complete SEAL API under `tenseal.sealapi`

## Usage

We show the basic operations over encrypted data, more advanced usage for machine learning applications can be found on our [tutorial section](#tutorials)

```python
import tenseal as ts

# Setup TenSEAL context
context = ts.context(
            ts.SCHEME_TYPE.CKKS,
            poly_modulus_degree=8192,
            coeff_mod_bit_sizes=[60, 40, 40, 60]
          )
context.generate_galois_keys()
context.global_scale = 2**40

v1 = [0, 1, 2, 3, 4]
v2 = [4, 3, 2, 1, 0]

# encrypted vectors
enc_v1 = ts.ckks_vector(context, v1)
enc_v2 = ts.ckks_vector(context, v2)

result = enc_v1 + enc_v2
result.decrypt() # ~ [4, 4, 4, 4, 4]

result = enc_v1.dot(enc_v2)
result.decrypt() # ~ [10]

matrix = [
  [73, 0.5, 8],
  [81, -5, 66],
  [-100, -78, -2],
  [0, 9, 17],
  [69, 11 , 10],
]
result = enc_v1.matmul(matrix)
result.decrypt() # ~ [157, -90, 153]
```

## Installation

#### Using pip

```bash
$ pip install tenseal
```
This installs the last packaged version on [pypi](https://pypi.org/project/tenseal/). If your platform doesn't have a ready package, please open an [issue](https://github.com/OpenMined/TenSEAL/issues) to let us know.

#### Build from Source

Supported platforms and their requirements are listed below: (this are only required for building TenSEAL from source)
- **Linux:** A modern version of GNU G++ (>= 6.0) or Clang++ (>= 5.0).
- **MacOS:** Xcode toolchain (>= 9.3)
- **Windows:** Microsoft Visual Studio (>= 10.0.40219.1, Visual Studio 2010 SP1 or later).

If you want to install tenseal from the repository, you should first make sure to have the requirements for your platform (listed above) and [CMake (3.14 or higher)](https://cmake.org/install/) installed, then get the third party libraries (if you didn't already) by running the following command from the root directory of the project

```bash
$ git submodule init
$ git submodule update
```

TenSEAL uses [Protocol Buffers](https://developers.google.com/protocol-buffers/docs/downloads) for serialization, and you will need the protocol buffer compiler too.


If you are on Windows, you will first need to build SEAL library using Visual Studio, you should use the solution file `SEAL.sln` in `third_party/SEAL` to build the project `native\src\SEAL.vcxproj` with `Configuration=Release` and `Platform=x64`. For more details check the instructions in [Building Microsoft SEAL](https://github.com/microsoft/SEAL#windows)

You can then trigger the build and the installation

```bash
$ pip install .
```

#### Use Docker

You can use our [Docker image](https://hub.docker.com/r/openmined/tenseal) for a ready to use environment with TenSEAL installed

```bash
$ docker container run --interactive --tty openmined/tenseal
```

**Note:** `openmined/tenseal` points to the image from the last release, use `openmined/tenseal:dev` for the image built from the master branch.


You can also build your custom image, this might be handy for developers working on the project

```bash
$ docker build -t tenseal -f docker-images/Dockerfile-py38 .
```

To interactively run this docker image as a container after it has been built you can run

```bash
$ docker container run -it tenseal
```

#### Using Bazel
To use this library in another Bazel project, add the following in your WORKSPACE file:

```load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

git_repository(
   name = "org_openmined_tenseal",
   remote = "https://github.com/OpenMined/TenSEAL",
   branch = "master",
   init_submodules = True,
)

load("@org_openmined_tenseal//tenseal:preload.bzl", "tenseal_preload")

tenseal_preload()

load("@org_openmined_tenseal//tenseal:deps.bzl", "tenseal_deps")

tenseal_deps()
```

## Benchmarks

You can benchmark the implementation at any point by running

```bash
$ bazel run -c opt --spawn_strategy=standalone //tests/cpp/benchmarks:benchmark
```

The benchmarks from every PR merge are uploaded [here](https://openmined.github.io/TenSEAL/benchmarks/).

## Tutorials

- [Getting Started](tutorials%2FTutorial%200%20-%20Getting%20Started.ipynb)
- [Tutorial 1 - Training and Evaluation of Logistic Regression on Encrypted Data](tutorials%2FTutorial%201%20-%20Training%20and%20Evaluation%20of%20Logistic%20Regression%20on%20Encrypted%20Data.ipynb)
- [Tutorial 2 - Working with Approximate Numbers](tutorials%2FTutorial%202%20-%20Working%20with%20Approximate%20Numbers.ipynb)
- [Tutorial 3 - Benchmarks](tutorials%2FTutorial%203%20-%20Benchmarks.ipynb)
- [Tutorial 4 - Encrypted Convolution on MNIST](tutorials%2FTutorial%204%20-%20Encrypted%20Convolution%20on%20MNIST.ipynb)

## Publications

A. Benaissa, B. Retiat, B. Cebere, A.E. Belfedhal, ["TenSEAL: A Library for Encrypted Tensor Operations Using Homomorphic Encryption"](https://arxiv.org/abs/2104.03152), ICLR 2021 Workshop on Distributed and Private Machine Learning (DPML 2021).

```
@misc{tenseal2021,
    title={TenSEAL: A Library for Encrypted Tensor Operations Using Homomorphic Encryption}, 
    author={Ayoub Benaissa and Bilal Retiat and Bogdan Cebere and Alaa Eddine Belfedhal},
    year={2021},
    eprint={2104.03152},
    archivePrefix={arXiv},
    primaryClass={cs.CR}
}
```

## Support

For support in using this library, please join the **#support** Slack channel. [Click here to join our Slack community!](https://slack.openmined.org)

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[Apache License 2.0](https://github.com/OpenMined/TenSEAL/blob/master/LICENSE)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/OpenMined/TenSEAL",
    "name": "tenseal",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "homomorphic encryption tensor deep learning privacy secure",
    "author": "OpenMined",
    "author_email": "info@openmined.org",
    "download_url": "",
    "platform": null,
    "description": "\n<h1 align=\"center\">\n  <br>\n  <a href=\"http://duet.openmined.org/\"><img src=\"https://github.com/OpenMined/design-assets/raw/master/logos/OM/mark-primary-trans.png\" alt=\"TenSEAL\" width=\"200\"></a>\n  <br>\n  TenSEAL\n  <br>\n</h1>\n\n<h3 align=\"center\">\n  <br>\n  A library for doing homomorphic encryption operations on tensors\n  <br>\n</h3>\n\n<div align=\"center\">\n\n[![Tests](https://github.com/OpenMined/TenSEAL/workflows/Tests/badge.svg)](https://github.com/OpenMined/TenSEAL/actions?query=branch%3Amaster++)\n[![Linux Package](https://github.com/OpenMined/TenSEAL/workflows/Linux%20Package/badge.svg)](https://github.com/OpenMined/TenSEAL/actions/workflows/pythonpublish-linux.yml)\n[![MacOS Package](https://github.com/OpenMined/TenSEAL/workflows/MacOS%20Package/badge.svg)](https://github.com/OpenMined/TenSEAL/actions/workflows/pythonpublish-macos.yml)\n[![Windows Package](https://github.com/OpenMined/TenSEAL/workflows/Windows%20Package/badge.svg)](https://github.com/OpenMined/TenSEAL/actions/workflows/pythonpublish-windows.yml)\n\n\n[![Downloads](https://img.shields.io/pypi/dd/tenseal)](https://pypi.org/project/tenseal/)\n[![Version](https://img.shields.io/pypi/v/tenseal)](https://pypi.org/project/tenseal/)\n[![OpenCollective](https://img.shields.io/opencollective/all/openmined)](https://opencollective.com/openmined)\n[![Slack](https://img.shields.io/badge/chat-on%20slack-7A5979.svg)](https://openmined.slack.com/messages/support)\n\n\n</div>\n\nTenSEAL is a library for doing homomorphic encryption operations on tensors, built on top of [Microsoft SEAL](https://github.com/Microsoft/SEAL). It provides ease of use through a Python API, while preserving efficiency by implementing most of its operations using C++.\n\n## Features\n\n- :key: Encryption/Decryption of vectors of integers using BFV\n- :old_key: Encryption/Decryption of vectors of real numbers using CKKS\n- :fire: Element-wise addition, subtraction and multiplication of encrypted-encrypted vectors and encrypted-plain vectors\n- :cyclone: Dot product and vector-matrix multiplication\n- :zap: Complete SEAL API under `tenseal.sealapi`\n\n## Usage\n\nWe show the basic operations over encrypted data, more advanced usage for machine learning applications can be found on our [tutorial section](#tutorials)\n\n```python\nimport tenseal as ts\n\n# Setup TenSEAL context\ncontext = ts.context(\n            ts.SCHEME_TYPE.CKKS,\n            poly_modulus_degree=8192,\n            coeff_mod_bit_sizes=[60, 40, 40, 60]\n          )\ncontext.generate_galois_keys()\ncontext.global_scale = 2**40\n\nv1 = [0, 1, 2, 3, 4]\nv2 = [4, 3, 2, 1, 0]\n\n# encrypted vectors\nenc_v1 = ts.ckks_vector(context, v1)\nenc_v2 = ts.ckks_vector(context, v2)\n\nresult = enc_v1 + enc_v2\nresult.decrypt() # ~ [4, 4, 4, 4, 4]\n\nresult = enc_v1.dot(enc_v2)\nresult.decrypt() # ~ [10]\n\nmatrix = [\n  [73, 0.5, 8],\n  [81, -5, 66],\n  [-100, -78, -2],\n  [0, 9, 17],\n  [69, 11 , 10],\n]\nresult = enc_v1.matmul(matrix)\nresult.decrypt() # ~ [157, -90, 153]\n```\n\n## Installation\n\n#### Using pip\n\n```bash\n$ pip install tenseal\n```\nThis installs the last packaged version on [pypi](https://pypi.org/project/tenseal/). If your platform doesn't have a ready package, please open an [issue](https://github.com/OpenMined/TenSEAL/issues) to let us know.\n\n#### Build from Source\n\nSupported platforms and their requirements are listed below: (this are only required for building TenSEAL from source)\n- **Linux:** A modern version of GNU G++ (>= 6.0) or Clang++ (>= 5.0).\n- **MacOS:** Xcode toolchain (>= 9.3)\n- **Windows:** Microsoft Visual Studio (>= 10.0.40219.1, Visual Studio 2010 SP1 or later).\n\nIf you want to install tenseal from the repository, you should first make sure to have the requirements for your platform (listed above) and [CMake (3.14 or higher)](https://cmake.org/install/) installed, then get the third party libraries (if you didn't already) by running the following command from the root directory of the project\n\n```bash\n$ git submodule init\n$ git submodule update\n```\n\nTenSEAL uses [Protocol Buffers](https://developers.google.com/protocol-buffers/docs/downloads) for serialization, and you will need the protocol buffer compiler too.\n\n\nIf you are on Windows, you will first need to build SEAL library using Visual Studio, you should use the solution file `SEAL.sln` in `third_party/SEAL` to build the project `native\\src\\SEAL.vcxproj` with `Configuration=Release` and `Platform=x64`. For more details check the instructions in [Building Microsoft SEAL](https://github.com/microsoft/SEAL#windows)\n\nYou can then trigger the build and the installation\n\n```bash\n$ pip install .\n```\n\n#### Use Docker\n\nYou can use our [Docker image](https://hub.docker.com/r/openmined/tenseal) for a ready to use environment with TenSEAL installed\n\n```bash\n$ docker container run --interactive --tty openmined/tenseal\n```\n\n**Note:** `openmined/tenseal` points to the image from the last release, use `openmined/tenseal:dev` for the image built from the master branch.\n\n\nYou can also build your custom image, this might be handy for developers working on the project\n\n```bash\n$ docker build -t tenseal -f docker-images/Dockerfile-py38 .\n```\n\nTo interactively run this docker image as a container after it has been built you can run\n\n```bash\n$ docker container run -it tenseal\n```\n\n#### Using Bazel\nTo use this library in another Bazel project, add the following in your WORKSPACE file:\n\n```load(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"git_repository\")\n\ngit_repository(\n   name = \"org_openmined_tenseal\",\n   remote = \"https://github.com/OpenMined/TenSEAL\",\n   branch = \"master\",\n   init_submodules = True,\n)\n\nload(\"@org_openmined_tenseal//tenseal:preload.bzl\", \"tenseal_preload\")\n\ntenseal_preload()\n\nload(\"@org_openmined_tenseal//tenseal:deps.bzl\", \"tenseal_deps\")\n\ntenseal_deps()\n```\n\n## Benchmarks\n\nYou can benchmark the implementation at any point by running\n\n```bash\n$ bazel run -c opt --spawn_strategy=standalone //tests/cpp/benchmarks:benchmark\n```\n\nThe benchmarks from every PR merge are uploaded [here](https://openmined.github.io/TenSEAL/benchmarks/).\n\n## Tutorials\n\n- [Getting Started](tutorials%2FTutorial%200%20-%20Getting%20Started.ipynb)\n- [Tutorial 1 - Training and Evaluation of Logistic Regression on Encrypted Data](tutorials%2FTutorial%201%20-%20Training%20and%20Evaluation%20of%20Logistic%20Regression%20on%20Encrypted%20Data.ipynb)\n- [Tutorial 2 - Working with Approximate Numbers](tutorials%2FTutorial%202%20-%20Working%20with%20Approximate%20Numbers.ipynb)\n- [Tutorial 3 - Benchmarks](tutorials%2FTutorial%203%20-%20Benchmarks.ipynb)\n- [Tutorial 4 - Encrypted Convolution on MNIST](tutorials%2FTutorial%204%20-%20Encrypted%20Convolution%20on%20MNIST.ipynb)\n\n## Publications\n\nA. Benaissa, B. Retiat, B. Cebere, A.E. Belfedhal, [\"TenSEAL: A Library for Encrypted Tensor Operations Using Homomorphic Encryption\"](https://arxiv.org/abs/2104.03152), ICLR 2021 Workshop on Distributed and Private Machine Learning (DPML 2021).\n\n```\n@misc{tenseal2021,\n    title={TenSEAL: A Library for Encrypted Tensor Operations Using Homomorphic Encryption}, \n    author={Ayoub Benaissa and Bilal Retiat and Bogdan Cebere and Alaa Eddine Belfedhal},\n    year={2021},\n    eprint={2104.03152},\n    archivePrefix={arXiv},\n    primaryClass={cs.CR}\n}\n```\n\n## Support\n\nFor support in using this library, please join the **#support** Slack channel. [Click here to join our Slack community!](https://slack.openmined.org)\n\n## Contributing\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n## License\n\n[Apache License 2.0](https://github.com/OpenMined/TenSEAL/blob/master/LICENSE)\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Library for Homomorphic Encryption Operations on Tensors",
    "version": "0.3.14",
    "split_keywords": [
        "homomorphic",
        "encryption",
        "tensor",
        "deep",
        "learning",
        "privacy",
        "secure"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc1d23502e060b623ffe74eb6cc0913f1df7fffca9814eb5843e2caf8c3e4612",
                "md5": "39141e1a5f49694807518169def06680",
                "sha256": "6b15073f162cfd9a13e3a3b4be5db6770ef9d6a501c88876a50f76c751d221f8"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39141e1a5f49694807518169def06680",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4248360,
            "upload_time": "2023-01-09T06:28:46",
            "upload_time_iso_8601": "2023-01-09T06:28:46.648122Z",
            "url": "https://files.pythonhosted.org/packages/dc/1d/23502e060b623ffe74eb6cc0913f1df7fffca9814eb5843e2caf8c3e4612/tenseal-0.3.14-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f98b88e3397054f959fc7db4aabf8d4dbc49b7b6b86cc83e18862f80c80ca4a9",
                "md5": "5f0349caede468345dcd4e6f5d3c9777",
                "sha256": "1d2eb19af56401fc4a6361098cfd8b3118ee7b4a306b945ce4ba972d5b32bf72"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f0349caede468345dcd4e6f5d3c9777",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4238753,
            "upload_time": "2023-01-09T06:27:03",
            "upload_time_iso_8601": "2023-01-09T06:27:03.569091Z",
            "url": "https://files.pythonhosted.org/packages/f9/8b/88e3397054f959fc7db4aabf8d4dbc49b7b6b86cc83e18862f80c80ca4a9/tenseal-0.3.14-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6d40f6a8f44fe013f4de3edb85934d18b0ae992f94dcc1d5c02bd33ba5f7151",
                "md5": "9d218de3b498f6a9fe68b612b69d2d01",
                "sha256": "dc60a47dc5f8530aca86d6069fbac55d42d5771a7ff774ce44eed57e0168f591"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d218de3b498f6a9fe68b612b69d2d01",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4907481,
            "upload_time": "2023-01-09T06:26:35",
            "upload_time_iso_8601": "2023-01-09T06:26:35.041384Z",
            "url": "https://files.pythonhosted.org/packages/d6/d4/0f6a8f44fe013f4de3edb85934d18b0ae992f94dcc1d5c02bd33ba5f7151/tenseal-0.3.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed344814315effdc5d84dd94c8ee8d93aacee7521ddb06078da0b90282f3ef10",
                "md5": "5fda3009567bb9b5453b3c94391e4edd",
                "sha256": "6cd5c1813f579b14195b384fb76cc68d9cb87c16266c389217a48e549b4757e0"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5fda3009567bb9b5453b3c94391e4edd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2096992,
            "upload_time": "2023-01-09T06:45:41",
            "upload_time_iso_8601": "2023-01-09T06:45:41.123044Z",
            "url": "https://files.pythonhosted.org/packages/ed/34/4814315effdc5d84dd94c8ee8d93aacee7521ddb06078da0b90282f3ef10/tenseal-0.3.14-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "740034fd453406044fe3add7df0e681996df42435a72376f134f6dfbc14dfb2f",
                "md5": "0e657aec463885af47a8d21111c10a8c",
                "sha256": "2f01008a298489b4668c22347054805fb3cd12ed47ae159cc6a48db20d368b6d"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e657aec463885af47a8d21111c10a8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4198679,
            "upload_time": "2023-01-09T06:28:51",
            "upload_time_iso_8601": "2023-01-09T06:28:51.559715Z",
            "url": "https://files.pythonhosted.org/packages/74/00/34fd453406044fe3add7df0e681996df42435a72376f134f6dfbc14dfb2f/tenseal-0.3.14-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaa90c227f993e05c51de68e8290bdc37f6e4c73ddaedf8d06b0052ccb323c75",
                "md5": "de0c699bb9b77950a033bea5d45faf7b",
                "sha256": "5df3300ed2070fa0579b974053bca429029a4c52983bc69255d4b83fc134d766"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp37-cp37m-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de0c699bb9b77950a033bea5d45faf7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4192366,
            "upload_time": "2023-01-09T06:31:53",
            "upload_time_iso_8601": "2023-01-09T06:31:53.452272Z",
            "url": "https://files.pythonhosted.org/packages/ea/a9/0c227f993e05c51de68e8290bdc37f6e4c73ddaedf8d06b0052ccb323c75/tenseal-0.3.14-cp37-cp37m-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abe35b71563e7035117b8e511ff8ebbe2b10937ccbe18e669f57be19eb95edcf",
                "md5": "c916a110fd50f6400772474c71f9a0d0",
                "sha256": "eac5c4ee2ac589c168d98ca9046b5924e90ac33d396ddda9b0519b8398f42fd7"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c916a110fd50f6400772474c71f9a0d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4864465,
            "upload_time": "2023-01-09T06:25:57",
            "upload_time_iso_8601": "2023-01-09T06:25:57.759057Z",
            "url": "https://files.pythonhosted.org/packages/ab/e3/5b71563e7035117b8e511ff8ebbe2b10937ccbe18e669f57be19eb95edcf/tenseal-0.3.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2e54e18d57a31a89a428db7e8173d59f26bb48610f7a98ca9e2be0c31d97ca6",
                "md5": "767f01895eb32be998b67edfe3696885",
                "sha256": "b85fe571b2ad9b86a22cd52748a75547654eeecbece0b943fd68723ef76f69a7"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "767f01895eb32be998b67edfe3696885",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2082140,
            "upload_time": "2023-01-09T06:49:34",
            "upload_time_iso_8601": "2023-01-09T06:49:34.604690Z",
            "url": "https://files.pythonhosted.org/packages/d2/e5/4e18d57a31a89a428db7e8173d59f26bb48610f7a98ca9e2be0c31d97ca6/tenseal-0.3.14-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81121e7b02c5e34a635b16f1b0b2e8e8b8c153b9e6d267f40be1d1799b44ddfb",
                "md5": "2a9e32770daa4b36da71d6d28ee86225",
                "sha256": "c763d45dd7b994d87efd242146fd9e40766b1ccfd823fff0e1ae5ecc4642c541"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a9e32770daa4b36da71d6d28ee86225",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4248568,
            "upload_time": "2023-01-09T06:42:59",
            "upload_time_iso_8601": "2023-01-09T06:42:59.113892Z",
            "url": "https://files.pythonhosted.org/packages/81/12/1e7b02c5e34a635b16f1b0b2e8e8b8c153b9e6d267f40be1d1799b44ddfb/tenseal-0.3.14-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21ae43fde621d7b8c16def1ecb223553f052fa30d1641da88390dd893a38e372",
                "md5": "8316ec6129cb1c533233f2e456321df1",
                "sha256": "a4d38f5bbe2c06ee922b3c96ed6ddd6cdd1992065a9c0994b55858500a2cc6f5"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp38-cp38-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8316ec6129cb1c533233f2e456321df1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4238953,
            "upload_time": "2023-01-09T06:42:24",
            "upload_time_iso_8601": "2023-01-09T06:42:24.880957Z",
            "url": "https://files.pythonhosted.org/packages/21/ae/43fde621d7b8c16def1ecb223553f052fa30d1641da88390dd893a38e372/tenseal-0.3.14-cp38-cp38-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcff89bdfb234864c393d5a5ca03ec8d8826856c1b4e9a4b1a62d3961c569585",
                "md5": "2c33fb71baef5d9bacf84815547ffd17",
                "sha256": "f4b29990e2be1e39ccf1889e9e8571e441ffa38b17cd611daa3e86ad941db912"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c33fb71baef5d9bacf84815547ffd17",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4907706,
            "upload_time": "2023-01-09T06:26:54",
            "upload_time_iso_8601": "2023-01-09T06:26:54.228608Z",
            "url": "https://files.pythonhosted.org/packages/dc/ff/89bdfb234864c393d5a5ca03ec8d8826856c1b4e9a4b1a62d3961c569585/tenseal-0.3.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbc0f056560c844052369036c727c0897722eb5a54d82a4412a1b50b12382fed",
                "md5": "fbb4774519f134ed38433b8653811dd4",
                "sha256": "8fe78c0f1e7e1f54467c2713703c9d538e181ef59cd85a637fd69bdda65c1298"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fbb4774519f134ed38433b8653811dd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2097424,
            "upload_time": "2023-01-09T06:49:54",
            "upload_time_iso_8601": "2023-01-09T06:49:54.438089Z",
            "url": "https://files.pythonhosted.org/packages/cb/c0/f056560c844052369036c727c0897722eb5a54d82a4412a1b50b12382fed/tenseal-0.3.14-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "542466490f629a893e09d7306933fdaae4c8fc0de80eae005deef38ba8f0de4e",
                "md5": "b188da7387af595c17fc7045fd151d43",
                "sha256": "ef9d7a702e8fe621c643ad4b8aa1263fb02e9d7e3e1dc00e89f53354e830e2f2"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b188da7387af595c17fc7045fd151d43",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4248541,
            "upload_time": "2023-01-09T06:43:42",
            "upload_time_iso_8601": "2023-01-09T06:43:42.283361Z",
            "url": "https://files.pythonhosted.org/packages/54/24/66490f629a893e09d7306933fdaae4c8fc0de80eae005deef38ba8f0de4e/tenseal-0.3.14-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42a3717b920ce2a3277d11df8b1f5fa5253c143fda496d47f5aacbda14efc12d",
                "md5": "63343c10d3e6ac5e31a9884a78ee6430",
                "sha256": "0f68618a9afeb1ce9387b401caf466283f0742f0bf01c654765668802236d765"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63343c10d3e6ac5e31a9884a78ee6430",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4238780,
            "upload_time": "2023-01-09T06:47:09",
            "upload_time_iso_8601": "2023-01-09T06:47:09.451329Z",
            "url": "https://files.pythonhosted.org/packages/42/a3/717b920ce2a3277d11df8b1f5fa5253c143fda496d47f5aacbda14efc12d/tenseal-0.3.14-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "608d824787aedb01307da775fc4c9fc5765b113d8852f04aef5e0f4aaaa478fc",
                "md5": "867325b989030f6764d0ff1336ff7766",
                "sha256": "15992141e0c4627838a99601165a4b3d1726d8d5bc8706ee72e860211b44d4f6"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "867325b989030f6764d0ff1336ff7766",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4907720,
            "upload_time": "2023-01-09T06:25:46",
            "upload_time_iso_8601": "2023-01-09T06:25:46.160489Z",
            "url": "https://files.pythonhosted.org/packages/60/8d/824787aedb01307da775fc4c9fc5765b113d8852f04aef5e0f4aaaa478fc/tenseal-0.3.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56f2c5f5a6144d70f37bf6bf8fa9f531849622873528d8b1c5d4a2e5f0df2948",
                "md5": "aceed51367828218af4ffee973daa86a",
                "sha256": "29d0df0aba3122686756052446f7d2b4852d91aee1aed5fb378300759173a39c"
            },
            "downloads": -1,
            "filename": "tenseal-0.3.14-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aceed51367828218af4ffee973daa86a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2096540,
            "upload_time": "2023-01-09T06:58:09",
            "upload_time_iso_8601": "2023-01-09T06:58:09.108002Z",
            "url": "https://files.pythonhosted.org/packages/56/f2/c5f5a6144d70f37bf6bf8fa9f531849622873528d8b1c5d4a2e5f0df2948/tenseal-0.3.14-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-09 06:28:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "OpenMined",
    "github_project": "TenSEAL",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tenseal"
}
        
Elapsed time: 0.02536s