| 1 | const std = @import("std"); |
| 2 | const common = @import("../common.zig"); |
| 3 | |
| 4 | const Field = common.Field; |
| 5 | |
| 6 | pub const Fe = Field(.{ |
| 7 | .fiat = @import("p256_64.zig"), |
| 8 | .field_order = 115792089210356248762697446949407573530086143415290314195533631308867097853951, |
| 9 | .field_bits = 256, |
| 10 | .saturated_bits = 256, |
| 11 | .encoded_length = 32, |
| 12 | }); |