| 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("secp256k1_64.zig"), |
| 8 | .field_order = 115792089237316195423570985008687907853269984665640564039457584007908834671663, |
| 9 | .field_bits = 256, |
| 10 | .saturated_bits = 256, |
| 11 | .encoded_length = 32, |
| 12 | }); |