I am currently working on a Xamarin.Forms based application that demonstrates the uses of homomorphic encryption. I followed the examples that were given on the Github page and I am now attempting to use this package myself. I installed the Nuget package to the project and wrote some basic code to use the SEAL functionality, however when I reach the second line of code,used to set the parameters of the encryption I get this problem. This is the line I reach where it fails :
EncryptionParameters parms = new EncryptionParameters(SchemeType.BFV);
The error that is then thrown:
System.DllNotFoundException Message=sealnetnative assembly: type: member:(null)
After researching I realizeed it has something to do with this .dll not being located by the project however I am struggling to fix this issue and I am in need of help!
Thanks in advance and I hope that I provided enough information.