Encrypting large integers

HI,

I came across the following post on encryption of 64bit numbers

Is the encryption carried out using packing of each bits of the binary expansion as a coefficient of the polynomial – following the RLWE encryption?

Thanks very much.

hello @bhavinmoriya58

the bit representation of the integer is split into blocks whiwh are themselves encrypted in LWE ciphertexts, so if you have a set of parameters which supports 2 bits of message, for a 64 bits integer you would get 32 LWEs each one encrypting 2 bits of the 64 bits integer

Thanks very much @IceTDrinker