aboutsummaryrefslogtreecommitdiff
path: root/lib/std/crypto/pcurves/p256/field.zig
blob: b85973132bdff66f829e22eec22765fcaa83807f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const std = @import("std");
const common = @import("../common.zig");

const Field = common.Field;

pub const Fe = Field(.{
    .fiat = @import("p256_64.zig"),
    .field_order = 115792089210356248762697446949407573530086143415290314195533631308867097853951,
    .field_bits = 256,
    .saturated_bits = 256,
    .encoded_length = 32,
});