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
not a bug, but an oddity. the API allows callers to change the coefficients of a polynomial, but not to increase its degree. callers can decrease the degree of a polynomial by setting higher degree coefficients to zero.
The text was updated successfully, but these errors were encountered:
True. This was intentional. The reason for this is that we want to have constant time operations on polynomials. Therefore, the function degree and its usage was removed and replaced with size. In general, the crate has no idea what a degree is.
oasis-core/secret-sharing/src/poly/univariate.rs
Line 71 in 18da8bc
not a bug, but an oddity. the API allows callers to change the coefficients of a polynomial, but not to increase its degree. callers can decrease the degree of a polynomial by setting higher degree coefficients to zero.
The text was updated successfully, but these errors were encountered: