Reply Decryption

The server reply is nested encrypted message with the depth equal to the dimension d of the dataset, the reply decryption process you need to decrypt the server's message for d times.

decrypted = Dec(..Dec(reply)..)

The decrypted will be the data you requested with some padding. The library automatically remove the padding and returns the desired result.

Last updated