-
-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting logs of errors from SEAL #124
Comments
Can you provide a code case and the system environment? This library should throw std errors like in C++. |
I have a class that controls all SEAL related stuff. There, all the seal objects are created, initialized so they can be used when needed:
Encryptor is initialized with a public key read from file:
Process method is the one doing the encryption, it receives a vector and tries to encrypt it
Last log is never reached, program stops with no message, no raised exception, nothing. I have tested the code both in linux (ubuntu 22.04 and windows 11) and it works in both (Processor: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz 2.42 GHz). The computer where things are failing is an i7 with the same windows. I checked SEAL code and didn't find any std error code, just throwing c++ exceptions. |
Hello. Do you have any idea about what's happening with the c++ logs or the exceptions? Something that I can try? |
Sorry for the late reply, I do not observe any specific issues, how the SEALContext be created? can you impl it without the class wrapper? |
I suspect that the issue is related with the SEAL compilation failing when trying to use wheel to install in a different machine. When I recompile and reinstall SEAL-Python everything works. |
Type
I'm having issues when encrypting vectors that I cannot reproduce in my development machine.
Describe
I have a small piece of software that used Python-SEAL. Everything works fine but when I move to a different machine software stops working, I cannot create keys nor encrypt a vector when I provide keys created in my machine. Software simply stops without any error and I cannot reproduce in my dev machine. Is there any way of enabling logs for SEAL?
Thanks in advance!
The text was updated successfully, but these errors were encountered: