Lab41 / PySEAL

This repository is a fork of Microsoft Research's homomorphic encryption implementation, the Simple Encrypted Arithmetic Library (SEAL). This code wraps the SEAL build in a docker container and provides Python API's to the encryption library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Get storage of plaintext and ciphertext?

liushengzhong1023 opened this issue · comments

Hi,

I just started trying to play with PySEAL. I am wondering is there any possibility that we can fetch the encoded vector of plaintext and ciphertext? The only finding by me is that we can use the to_string() function to print their string representation. Do I need to parse this vector from this string?

Thanks,
Shengzhong

Sorry, I think I find the coeff_at() and coeff_count() function which could meet my needs.