Skip to content

Releases: OpenMined/TenSEAL

TenSEAL 0.3.0a4 Release Notes

21 Jan 16:10
Compare
Choose a tag to compare
Pre-release

Changelog:

  • Hotfix for lazy context serialization issue.

TenSEAL 0.3.0a3 Release Notes

21 Jan 14:00
2594817
Compare
Choose a tag to compare
Pre-release

Changelog:

  • PlainTensor serialization support

TenSEAL 0.3.0a2 Release Notes

20 Jan 11:56
ab23f22
Compare
Choose a tag to compare
Pre-release

Changelog:

  • Lazy context support: allows us to deserialize tensors and link the context later(#197).
  • CKKSTensor reshape support (#194).
  • CKKSTensor Dot operation(#196).
  • matmul API updates (#208)
  • TensorStorage with xtensor(#198)
  • Symmetric encryption support (#210)

TenSEAL 0.3.0a1 Release Notes

08 Dec 17:58
cd7d911
Compare
Choose a tag to compare
Pre-release

We introduce new Python wrappers for all low level objects (#185). Previously, the python API interacted directly with the binded low level objects. However, we now have a Python class wrapping every low level objects.
The API is still the same.

TenSEAL 0.3.0a0 Release Notes

05 Dec 15:07
122fa26
Compare
Choose a tag to compare
Pre-release

This version mainly introduce a new tensor type, the CKKSTensor, which can encrypts N-dimensional tensors, with the ability to use one axis as the batch_axis, which will be stored along ciphertext slots.

New features

Bug fixes

  • Race condition on multiworkers (#151)
  • Fix Centos scripts (#149)

Other

  • We now link protobuf statically, so the running system doesn't need the library to be installed (#177)
  • We now use SEAL 3.6 (#158)
  • Refactoring and library improvements (#153, #167)

TenSEAL 0.2.0a1 Release Notes

27 Aug 17:14
026acef
Compare
Choose a tag to compare
Pre-release

Fix package build on release #147

TenSEAL 0.2.0a0 Release Notes

27 Aug 14:32
f6b4418
Compare
Choose a tag to compare
Pre-release

The convolution operation introduced in this alpha release have an experimental API that should be updated in upcoming releases.

New features

  • Serialization of TenSEALContext and tensor types (#101, #109)
  • Threadpool support and parallel vector-matrix multiplication (#115, #124)
  • Check if a key is found in a TenSEALContext (#132)
  • Convolution using im2col technique (#117, #134, #138)
  • Encrypted matrix multiplication with plain vector (#137, #138)
  • Vector packing (#141)

Bug fixes

  • make_public_context should keep the existing keys (#110)
  • Better handling of transparent ct exceptions (#119)
  • Check for empty vector upon encryption (#126)
  • Fix CKKS and BFV vectors constructors (#133)

Other

  • Tutorial 1 - Training and Evaluation of Logistic Regression on Encrypted Data (#85)
  • Update docker images, docs and tags (#104, #111, #114)
  • Upgrade SEAL to 3.5.6 (#105)
  • Bazel build (#116)
  • Automatic tests on [Linux, MacOS, Windows] x [py36, py37, py38] (#128)
  • Code optimization (#142)
  • Fix release workflow (#143)

TenSEAL 0.1.0 Release Notes

16 Jul 06:07
6127f9f
Compare
Choose a tag to compare
Pre-release
  • Scalar operations for CKKSVector (#86)
  • Operations on vectors of different size (1 vs n) (#92)
  • Negate and right arithmetic operators for CKKSVector (#93, #94)
  • Encrypted vector exponentiation and polynomial evaluation with optimum circuit (#99, #100)

With all this recent changes, TenSEAL is now able to perform training of a logistic regression model, checkout the tutorial section for more information.

TenSEAL 0.1.0a1 Release Notes

06 Jul 14:55
95b5c7c
Compare
Choose a tag to compare
Pre-release
  • Fixing package build for MacOS (#87 ) and Windows (#89)

TenSEAL 0.1.0a0 Release Notes

06 Jul 09:39
75121f5
Compare
Choose a tag to compare
Pre-release

This is the first official release of TenSEAL, so we will mainly focus on what this first version have been building so far

  • Encryption/Decryption of vectors of real numbers or integers using either CKKS or BFV respectively
  • Element-wise addition, substraction and multiplication of encrypted-encrypted vectors and encrypted-plain vectors
  • Dot product and vector-matrix multiplication
  • Complete SEAL API under tenseal.sealapi
  • Support for Linux, Windows and MacOS
  • Support for Python 3.6, 3.7 and 3.8
  • Docker images with TenSEAL for Python 3.6, 3.7 and 3.8
  • Tutorial for Getting Started
  • Automation of build, release and tests of both Python and C++ code.

Thanks to all the contributors of the TenSEAL library, more specifically to @philomath213 and @bcebere for their time and efforts spent to be able able to make this first release.