-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathconfig.rs
157 lines (128 loc) · 4.7 KB
/
config.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
mod baby_bear_keccak;
mod bn254_keccak;
mod bn254_sha2;
mod gf2_ext_keccak;
mod gf2_ext_sha2;
mod m31_ext_keccak;
mod m31_ext_sha2;
pub use baby_bear_keccak::BabyBearExt4ConfigKeccak;
pub use bn254_keccak::BN254ConfigKeccak;
pub use bn254_sha2::BN254ConfigSha2;
pub use gf2_ext_keccak::GF2ExtConfigKeccak;
pub use gf2_ext_sha2::GF2ExtConfigSha2;
pub use m31_ext_keccak::M31ExtConfigKeccak;
pub use m31_ext_sha2::M31ExtConfigSha2;
use arith::{ExtensionField, Field, FieldSerde, SimdField};
use crate::FiatShamirHash;
#[derive(Debug, Clone, PartialEq, Default)]
pub enum PolynomialCommitmentType {
#[default]
Raw,
KZG,
Orion,
FRI,
}
#[derive(Debug, Clone, PartialEq)]
pub enum FieldType {
BabyBear,
M31,
BN254,
GF2,
}
pub const SENTINEL_M31: [u8; 32] = [
255, 255, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0,
];
pub const SENTINEL_BN254: [u8; 32] = [
1, 0, 0, 240, 147, 245, 225, 67, 145, 112, 185, 121, 72, 232, 51, 40, 93, 88, 129, 129, 182,
69, 80, 184, 41, 160, 49, 225, 114, 78, 100, 48,
];
#[derive(Debug, Clone, PartialEq, Default)]
pub enum GKRScheme {
#[default]
Vanilla,
GkrSquare,
}
#[derive(Debug, Clone, PartialEq, Default)]
pub enum FiatShamirHashType {
#[default]
SHA256,
Keccak256,
Poseidon,
Animoe,
MIMC7,
}
#[derive(Debug, Clone, PartialEq, Default)]
pub struct Config<C: GKRConfig> {
// Field size for the variables
pub field_size: usize,
// Targeted security level for the scheme
pub security_bits: usize,
#[cfg(feature = "grinding")]
// Grinding bits to achieve the target security level
pub grinding_bits: usize,
// Polynomial commitment scheme
pub polynomial_commitment_type: PolynomialCommitmentType,
// Field configuration for GKR
pub gkr_config: C,
// Whether to use GKR^2
pub gkr_scheme: GKRScheme,
}
impl<C: GKRConfig> Config<C> {
pub fn new(gkr_scheme: GKRScheme) -> Self {
Config {
field_size: C::ChallengeField::FIELD_SIZE,
security_bits: 100,
#[cfg(feature = "grinding")]
grinding_bits: 10,
polynomial_commitment_type: PolynomialCommitmentType::Raw,
gkr_config: C::default(),
gkr_scheme,
}
}
}
pub trait GKRConfig: Default + Clone + Send + Sync + 'static {
/// Field type for the circuit, e.g., M31
type CircuitField: Field + FieldSerde + Send;
/// Field type for the challenge, e.g., M31Ext3
type ChallengeField: ExtensionField<BaseField = Self::CircuitField> + Send;
/// Main field type for the scheme, e.g., M31Ext3x16
type Field: ExtensionField<BaseField = Self::SimdCircuitField>
+ SimdField<Scalar = Self::ChallengeField>
+ Send;
/// Simd field for circuit
type SimdCircuitField: SimdField<Scalar = Self::CircuitField> + FieldSerde + Send;
/// Fiat Shamir hash type
type FiatShamirHashType: FiatShamirHash;
/// Enum type for Self::Field
const FIELD_TYPE: FieldType;
/// API to allow for multiplications between the challenge and the circuit field
fn challenge_mul_circuit_field(
a: &Self::ChallengeField,
b: &Self::CircuitField,
) -> Self::ChallengeField;
/// API to allow for multiplications between the main field and the circuit field
fn field_mul_circuit_field(a: &Self::Field, b: &Self::CircuitField) -> Self::Field;
/// API to allow for addition between the main field and the circuit field
fn field_add_circuit_field(a: &Self::Field, b: &Self::CircuitField) -> Self::Field;
/// API to allow multiplications between the main field and the simd circuit field
fn field_add_simd_circuit_field(a: &Self::Field, b: &Self::SimdCircuitField) -> Self::Field;
/// API to allow multiplications between the main field and the simd circuit field
fn field_mul_simd_circuit_field(a: &Self::Field, b: &Self::SimdCircuitField) -> Self::Field;
/// API to allow for multiplications between the challenge and the main field
fn challenge_mul_field(a: &Self::ChallengeField, b: &Self::Field) -> Self::Field;
fn circuit_field_into_field(a: &Self::SimdCircuitField) -> Self::Field;
fn circuit_field_mul_simd_circuit_field(
a: &Self::CircuitField,
b: &Self::SimdCircuitField,
) -> Self::SimdCircuitField;
fn circuit_field_to_simd_circuit_field(a: &Self::CircuitField) -> Self::SimdCircuitField;
fn simd_circuit_field_into_field(a: &Self::SimdCircuitField) -> Self::Field;
fn simd_circuit_field_mul_challenge_field(
a: &Self::SimdCircuitField,
b: &Self::ChallengeField,
) -> Self::Field;
fn get_field_pack_size() -> usize {
Self::SimdCircuitField::pack_size()
}
}