You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating a data type that uses a vector of NTL::GF2X polynomials named value and am trying to figure out how to pack and unpack it. I came up with the following. Does it seem along the right lines? (BTW, modulus is the polynomial used to initialize the GF2E I am using.)
I don't the NTL function but you cannot use unallocated pointers, that is, you need to allocate some memory for c to point at. See the following for an introduction: https://cplusplus.com/doc/tutorial/dynamic/
Hello Marcel,
I am creating a data type that uses a vector of
NTL::GF2X
polynomials namedvalue
and am trying to figure out how to pack and unpack it. I came up with the following. Does it seem along the right lines? (BTW, modulus is the polynomial used to initialize theGF2E
I am using.)The text was updated successfully, but these errors were encountered: