fherma-lang 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fherma_lang-0.1.0/.gitignore +17 -0
- fherma_lang-0.1.0/CHANGELOG.md +20 -0
- fherma_lang-0.1.0/LICENSE +202 -0
- fherma_lang-0.1.0/PKG-INFO +176 -0
- fherma_lang-0.1.0/README.md +148 -0
- fherma_lang-0.1.0/pyproject.toml +65 -0
- fherma_lang-0.1.0/src/fherma_lang/__init__.py +29 -0
- fherma_lang-0.1.0/src/fherma_lang/__main__.py +258 -0
- fherma_lang-0.1.0/src/fherma_lang/ast.py +181 -0
- fherma_lang-0.1.0/src/fherma_lang/emit/__init__.py +63 -0
- fherma_lang-0.1.0/src/fherma_lang/emit/testing.py +409 -0
- fherma_lang-0.1.0/src/fherma_lang/errors.py +38 -0
- fherma_lang-0.1.0/src/fherma_lang/lex.py +122 -0
- fherma_lang-0.1.0/src/fherma_lang/parse.py +269 -0
- fherma_lang-0.1.0/src/fherma_lang/py.typed +0 -0
- fherma_lang-0.1.0/src/fherma_lang/serde.py +79 -0
- fherma_lang-0.1.0/tests/test_emit.py +194 -0
- fherma_lang-0.1.0/tests/test_parse.py +166 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Virtual environments and caches
|
|
2
|
+
.venv/
|
|
3
|
+
__pycache__/
|
|
4
|
+
*.py[cod]
|
|
5
|
+
.pytest_cache/
|
|
6
|
+
.ruff_cache/
|
|
7
|
+
|
|
8
|
+
# Build artefacts
|
|
9
|
+
dist/
|
|
10
|
+
build/
|
|
11
|
+
*.egg-info/
|
|
12
|
+
|
|
13
|
+
# Scratch: scaffolds and parse results written while trying things out
|
|
14
|
+
/bundle/
|
|
15
|
+
/out.txt
|
|
16
|
+
/parsed.json
|
|
17
|
+
/*.fhk
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Versions follow [semantic versioning](https://semver.org). For this package the
|
|
4
|
+
public surface is two things: the language a `.fhk` file is written in, and the
|
|
5
|
+
shape of the bundle `emit` produces. A change to either is a change other people
|
|
6
|
+
have to react to, and is versioned accordingly.
|
|
7
|
+
|
|
8
|
+
## 0.1.0
|
|
9
|
+
|
|
10
|
+
First release.
|
|
11
|
+
|
|
12
|
+
- The FHERMA Kernel Language: lexer, parser, and the diagnostics named in the
|
|
13
|
+
specification (`E-LEX-1` through `E-REFINE-6`).
|
|
14
|
+
- `parse` and `lex` for reading a declaration; `to_plain` and `from_plain` for
|
|
15
|
+
storing one and reading it back; `reference` for what a declaration calls
|
|
16
|
+
itself.
|
|
17
|
+
- `emit` for the testing scaffold — the shared module derived from the
|
|
18
|
+
signature, and stubs for the generator, the oracle and the verifier.
|
|
19
|
+
- `fherma-lang`, a command line entry point, for anything that would rather call
|
|
20
|
+
a program than import a library.
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: fherma-lang
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: FHERMA Kernel Language: lexer, parser, checks and emitters
|
|
5
|
+
Project-URL: Homepage, https://fherma.io
|
|
6
|
+
Author: FairMath
|
|
7
|
+
License: Apache-2.0
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: compiler,cryptography,fhe,kernels,mlir,parser
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
20
|
+
Classifier: Topic :: Security :: Cryptography
|
|
21
|
+
Classifier: Topic :: Software Development :: Compilers
|
|
22
|
+
Classifier: Typing :: Typed
|
|
23
|
+
Requires-Python: >=3.11
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
26
|
+
Requires-Dist: ruff>=0.6; extra == 'dev'
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
|
|
29
|
+
# fherma-lang
|
|
30
|
+
|
|
31
|
+
FHERMA Kernel Language: lexer, parser and emitters. A standalone package —
|
|
32
|
+
text in, structure out. It knows nothing about any platform, has no
|
|
33
|
+
dependencies, and is what everything else builds on: the `fherma` command line
|
|
34
|
+
tool, a server, a build script, an editor.
|
|
35
|
+
|
|
36
|
+
```shell
|
|
37
|
+
pip install fherma-lang
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Most people arrive through `pip install fherma`, which brings this package along
|
|
41
|
+
— the command line tool is built on it. Install it directly when you want the
|
|
42
|
+
language and nothing else: a server validating a signature, an editor, a build
|
|
43
|
+
step.
|
|
44
|
+
|
|
45
|
+
## The language in one example
|
|
46
|
+
|
|
47
|
+
A **kernel** states a computational problem as generally as it is true. A
|
|
48
|
+
**specification** refines it: it settles the types, names the dimensions and adds
|
|
49
|
+
whatever the representation needs.
|
|
50
|
+
|
|
51
|
+
```text
|
|
52
|
+
kernel poly_mult<T: Numeric, N: uint>(
|
|
53
|
+
%a: tensor<N x T>,
|
|
54
|
+
%b: tensor<N x T>,
|
|
55
|
+
) -> %c: tensor<N x T>
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
```text
|
|
59
|
+
spec rlwe 1.0.0 "Cyclotomic, at RLWE parameters" {
|
|
60
|
+
kernel poly_mult<T: i64, N: uint, L: uint, q: uint>(
|
|
61
|
+
%a: tensor<N x L x T>,
|
|
62
|
+
%b: tensor<N x L x T>,
|
|
63
|
+
) -> %c: tensor<N x L x T>
|
|
64
|
+
}
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Both are the same production: a specification is a header wrapping a kernel
|
|
68
|
+
declaration. What tells them apart is not syntax but how much they leave open.
|
|
69
|
+
|
|
70
|
+
## Reading a declaration
|
|
71
|
+
|
|
72
|
+
```console
|
|
73
|
+
$ fherma-lang parse sig.fhk
|
|
74
|
+
specification rlwe 1.0.0
|
|
75
|
+
Cyclotomic, at RLWE parameters
|
|
76
|
+
refines kernel poly_mult
|
|
77
|
+
parameters
|
|
78
|
+
T i64
|
|
79
|
+
N uint
|
|
80
|
+
L uint
|
|
81
|
+
q uint
|
|
82
|
+
arguments
|
|
83
|
+
%a tensor<N x L x T>
|
|
84
|
+
%b tensor<N x L x T>
|
|
85
|
+
results
|
|
86
|
+
%c tensor<N x L x T>
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
`--json` prints the parse result for another tool to consume, and it can be fed
|
|
90
|
+
straight back in — see below.
|
|
91
|
+
|
|
92
|
+
Failures carry a code from the specification of the language, the place, and
|
|
93
|
+
something to do about it:
|
|
94
|
+
|
|
95
|
+
```console
|
|
96
|
+
$ fherma-lang parse bad.fhk
|
|
97
|
+
E-TYPE-1: Field is neither a class nor a type of this language
|
|
98
|
+
line 1, column 13
|
|
99
|
+
kernel f<T: Field>(%x: T) -> %y: T
|
|
100
|
+
^
|
|
101
|
+
Classes are Numeric, Integer, Real. Types are i8…i64, f8…f64, index, uint, int, real.
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Emitting a scaffold
|
|
105
|
+
|
|
106
|
+
A scaffold is a pure function of a declaration: the same signature always gives
|
|
107
|
+
the same tree, which is what lets a command line tool and a web button hand out
|
|
108
|
+
identical bundles without coordinating.
|
|
109
|
+
|
|
110
|
+
```console
|
|
111
|
+
$ fherma-lang emit --testing sig.fhk
|
|
112
|
+
testing scaffold in poly_mult-rlwe-1.0.0
|
|
113
|
+
fherma.py 3729 generated
|
|
114
|
+
generate.py 558 yours
|
|
115
|
+
oracle.py 504 yours
|
|
116
|
+
verify.py 625 yours
|
|
117
|
+
README.md 889 generated
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
`fherma.py` holds the types derived from the signature — `Point`, `Inputs`,
|
|
121
|
+
`Outputs` — along with the deterministic `Stream` and the codec. The three stubs
|
|
122
|
+
are where an author writes the generator, the oracle and the verifier.
|
|
123
|
+
|
|
124
|
+
Name the parts to scaffold one or two of them:
|
|
125
|
+
|
|
126
|
+
```shell
|
|
127
|
+
fherma-lang emit --testing sig.fhk --oracle --verifier
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
Either a declaration or a stored parse result will do; the tool tells them apart
|
|
131
|
+
by looking at the first character, and does the rest:
|
|
132
|
+
|
|
133
|
+
```shell
|
|
134
|
+
fherma-lang parse --json sig.fhk > parsed.json
|
|
135
|
+
fherma-lang emit --testing parsed.json --out ./bundle
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
## As a library
|
|
139
|
+
|
|
140
|
+
```python
|
|
141
|
+
from fherma_lang import emit, parse
|
|
142
|
+
|
|
143
|
+
declaration = parse(open("sig.fhk").read())
|
|
144
|
+
for file in emit(declaration, kind="testing", parts=["oracle"]):
|
|
145
|
+
print(file.path, file.generated)
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
```python
|
|
149
|
+
from fherma_lang import reference # "poly_mult/rlwe@1.0.0"
|
|
150
|
+
from fherma_lang.serde import from_plain, to_plain # a declaration to JSON and back
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
`reference` is what a declaration calls itself, and there is one definition of
|
|
154
|
+
it because more than one thing depends on the exact string: it keys the
|
|
155
|
+
deterministic stream, and a bundle records it as its own origin.
|
|
156
|
+
|
|
157
|
+
## What is refused, and why
|
|
158
|
+
|
|
159
|
+
A scaffold needs every parameter settled, because there is no honest Python type
|
|
160
|
+
for an open one. This is about abstraction, not about the shape of the
|
|
161
|
+
declaration: a kernel that pins all of its parameters scaffolds fine.
|
|
162
|
+
|
|
163
|
+
```text
|
|
164
|
+
E-SPEC-3: parameter T is constrained to Numeric rather than settled
|
|
165
|
+
A class admits many types; pick one, as in <T: i64>.
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
Secrecy is a different matter. Where a signature hides a value, the scaffold sees
|
|
169
|
+
through it: the generator and the oracle always work in cleartext, since
|
|
170
|
+
encryption — where there is any — happens between them and the run.
|
|
171
|
+
|
|
172
|
+
## Exit codes
|
|
173
|
+
|
|
174
|
+
```text
|
|
175
|
+
0 done 1 the declaration was rejected 2 called wrongly
|
|
176
|
+
```
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
# fherma-lang
|
|
2
|
+
|
|
3
|
+
FHERMA Kernel Language: lexer, parser and emitters. A standalone package —
|
|
4
|
+
text in, structure out. It knows nothing about any platform, has no
|
|
5
|
+
dependencies, and is what everything else builds on: the `fherma` command line
|
|
6
|
+
tool, a server, a build script, an editor.
|
|
7
|
+
|
|
8
|
+
```shell
|
|
9
|
+
pip install fherma-lang
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Most people arrive through `pip install fherma`, which brings this package along
|
|
13
|
+
— the command line tool is built on it. Install it directly when you want the
|
|
14
|
+
language and nothing else: a server validating a signature, an editor, a build
|
|
15
|
+
step.
|
|
16
|
+
|
|
17
|
+
## The language in one example
|
|
18
|
+
|
|
19
|
+
A **kernel** states a computational problem as generally as it is true. A
|
|
20
|
+
**specification** refines it: it settles the types, names the dimensions and adds
|
|
21
|
+
whatever the representation needs.
|
|
22
|
+
|
|
23
|
+
```text
|
|
24
|
+
kernel poly_mult<T: Numeric, N: uint>(
|
|
25
|
+
%a: tensor<N x T>,
|
|
26
|
+
%b: tensor<N x T>,
|
|
27
|
+
) -> %c: tensor<N x T>
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
```text
|
|
31
|
+
spec rlwe 1.0.0 "Cyclotomic, at RLWE parameters" {
|
|
32
|
+
kernel poly_mult<T: i64, N: uint, L: uint, q: uint>(
|
|
33
|
+
%a: tensor<N x L x T>,
|
|
34
|
+
%b: tensor<N x L x T>,
|
|
35
|
+
) -> %c: tensor<N x L x T>
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Both are the same production: a specification is a header wrapping a kernel
|
|
40
|
+
declaration. What tells them apart is not syntax but how much they leave open.
|
|
41
|
+
|
|
42
|
+
## Reading a declaration
|
|
43
|
+
|
|
44
|
+
```console
|
|
45
|
+
$ fherma-lang parse sig.fhk
|
|
46
|
+
specification rlwe 1.0.0
|
|
47
|
+
Cyclotomic, at RLWE parameters
|
|
48
|
+
refines kernel poly_mult
|
|
49
|
+
parameters
|
|
50
|
+
T i64
|
|
51
|
+
N uint
|
|
52
|
+
L uint
|
|
53
|
+
q uint
|
|
54
|
+
arguments
|
|
55
|
+
%a tensor<N x L x T>
|
|
56
|
+
%b tensor<N x L x T>
|
|
57
|
+
results
|
|
58
|
+
%c tensor<N x L x T>
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
`--json` prints the parse result for another tool to consume, and it can be fed
|
|
62
|
+
straight back in — see below.
|
|
63
|
+
|
|
64
|
+
Failures carry a code from the specification of the language, the place, and
|
|
65
|
+
something to do about it:
|
|
66
|
+
|
|
67
|
+
```console
|
|
68
|
+
$ fherma-lang parse bad.fhk
|
|
69
|
+
E-TYPE-1: Field is neither a class nor a type of this language
|
|
70
|
+
line 1, column 13
|
|
71
|
+
kernel f<T: Field>(%x: T) -> %y: T
|
|
72
|
+
^
|
|
73
|
+
Classes are Numeric, Integer, Real. Types are i8…i64, f8…f64, index, uint, int, real.
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Emitting a scaffold
|
|
77
|
+
|
|
78
|
+
A scaffold is a pure function of a declaration: the same signature always gives
|
|
79
|
+
the same tree, which is what lets a command line tool and a web button hand out
|
|
80
|
+
identical bundles without coordinating.
|
|
81
|
+
|
|
82
|
+
```console
|
|
83
|
+
$ fherma-lang emit --testing sig.fhk
|
|
84
|
+
testing scaffold in poly_mult-rlwe-1.0.0
|
|
85
|
+
fherma.py 3729 generated
|
|
86
|
+
generate.py 558 yours
|
|
87
|
+
oracle.py 504 yours
|
|
88
|
+
verify.py 625 yours
|
|
89
|
+
README.md 889 generated
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
`fherma.py` holds the types derived from the signature — `Point`, `Inputs`,
|
|
93
|
+
`Outputs` — along with the deterministic `Stream` and the codec. The three stubs
|
|
94
|
+
are where an author writes the generator, the oracle and the verifier.
|
|
95
|
+
|
|
96
|
+
Name the parts to scaffold one or two of them:
|
|
97
|
+
|
|
98
|
+
```shell
|
|
99
|
+
fherma-lang emit --testing sig.fhk --oracle --verifier
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Either a declaration or a stored parse result will do; the tool tells them apart
|
|
103
|
+
by looking at the first character, and does the rest:
|
|
104
|
+
|
|
105
|
+
```shell
|
|
106
|
+
fherma-lang parse --json sig.fhk > parsed.json
|
|
107
|
+
fherma-lang emit --testing parsed.json --out ./bundle
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## As a library
|
|
111
|
+
|
|
112
|
+
```python
|
|
113
|
+
from fherma_lang import emit, parse
|
|
114
|
+
|
|
115
|
+
declaration = parse(open("sig.fhk").read())
|
|
116
|
+
for file in emit(declaration, kind="testing", parts=["oracle"]):
|
|
117
|
+
print(file.path, file.generated)
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
```python
|
|
121
|
+
from fherma_lang import reference # "poly_mult/rlwe@1.0.0"
|
|
122
|
+
from fherma_lang.serde import from_plain, to_plain # a declaration to JSON and back
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
`reference` is what a declaration calls itself, and there is one definition of
|
|
126
|
+
it because more than one thing depends on the exact string: it keys the
|
|
127
|
+
deterministic stream, and a bundle records it as its own origin.
|
|
128
|
+
|
|
129
|
+
## What is refused, and why
|
|
130
|
+
|
|
131
|
+
A scaffold needs every parameter settled, because there is no honest Python type
|
|
132
|
+
for an open one. This is about abstraction, not about the shape of the
|
|
133
|
+
declaration: a kernel that pins all of its parameters scaffolds fine.
|
|
134
|
+
|
|
135
|
+
```text
|
|
136
|
+
E-SPEC-3: parameter T is constrained to Numeric rather than settled
|
|
137
|
+
A class admits many types; pick one, as in <T: i64>.
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Secrecy is a different matter. Where a signature hides a value, the scaffold sees
|
|
141
|
+
through it: the generator and the oracle always work in cleartext, since
|
|
142
|
+
encryption — where there is any — happens between them and the run.
|
|
143
|
+
|
|
144
|
+
## Exit codes
|
|
145
|
+
|
|
146
|
+
```text
|
|
147
|
+
0 done 1 the declaration was rejected 2 called wrongly
|
|
148
|
+
```
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fherma-lang"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "FHERMA Kernel Language: lexer, parser, checks and emitters"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "FairMath" }]
|
|
13
|
+
keywords = ["fhe", "cryptography", "compiler", "parser", "kernels", "mlir"]
|
|
14
|
+
|
|
15
|
+
# What the index shows, and what people filter on. "3 - Alpha" is the honest
|
|
16
|
+
# reading of a language whose specification is younger than its parser.
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Development Status :: 3 - Alpha",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Intended Audience :: Science/Research",
|
|
21
|
+
"License :: OSI Approved :: Apache Software License",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Topic :: Security :: Cryptography",
|
|
28
|
+
"Topic :: Software Development :: Compilers",
|
|
29
|
+
"Topic :: Scientific/Engineering :: Mathematics",
|
|
30
|
+
"Typing :: Typed",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
# The language is the platform's core asset, and it has exactly one
|
|
34
|
+
# implementation. Both the CLI and the backend depend on this package, which is
|
|
35
|
+
# why it carries no dependencies of its own: nothing here should ever constrain
|
|
36
|
+
# what either of them can install.
|
|
37
|
+
dependencies = []
|
|
38
|
+
|
|
39
|
+
# No `Source`: the repository is private, and a link that asks the reader to log
|
|
40
|
+
# in and then tells them no is worse than no link. What the language *is* — the
|
|
41
|
+
# normative specification, the diagnostics — belongs on the site, and that is
|
|
42
|
+
# where a reader is sent.
|
|
43
|
+
[project.urls]
|
|
44
|
+
Homepage = "https://fherma.io"
|
|
45
|
+
|
|
46
|
+
[project.scripts]
|
|
47
|
+
# A machine-facing entry point. The backend calls this rather than reimplementing
|
|
48
|
+
# the language in TypeScript.
|
|
49
|
+
fherma-lang = "fherma_lang.__main__:main"
|
|
50
|
+
|
|
51
|
+
[project.optional-dependencies]
|
|
52
|
+
dev = ["pytest>=8.0", "ruff>=0.6"]
|
|
53
|
+
|
|
54
|
+
[tool.hatch.build.targets.wheel]
|
|
55
|
+
packages = ["src/fherma_lang"]
|
|
56
|
+
|
|
57
|
+
[tool.ruff]
|
|
58
|
+
line-length = 96
|
|
59
|
+
target-version = "py311"
|
|
60
|
+
|
|
61
|
+
[tool.ruff.lint]
|
|
62
|
+
select = ["E", "F", "I", "UP", "B"]
|
|
63
|
+
|
|
64
|
+
[tool.pytest.ini_options]
|
|
65
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""FHERMA Kernel Language — a standalone tool for the language itself.
|
|
2
|
+
|
|
3
|
+
Text in, structure out. It knows nothing about any platform, and is used by the
|
|
4
|
+
CLI, by servers, by CI and by anything else that needs to read a signature.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from .ast import ( # noqa: F401
|
|
8
|
+
Binding,
|
|
9
|
+
Bound,
|
|
10
|
+
Declaration,
|
|
11
|
+
KernelDecl,
|
|
12
|
+
Parameter,
|
|
13
|
+
Scalar,
|
|
14
|
+
Secret,
|
|
15
|
+
SpecDecl,
|
|
16
|
+
Tensor,
|
|
17
|
+
Type,
|
|
18
|
+
TypeVar,
|
|
19
|
+
reference,
|
|
20
|
+
satisfies,
|
|
21
|
+
strip_secret,
|
|
22
|
+
)
|
|
23
|
+
from .emit import File, emit # noqa: F401
|
|
24
|
+
from .errors import Diagnostic, LanguageError # noqa: F401
|
|
25
|
+
from .lex import lex # noqa: F401
|
|
26
|
+
from .parse import parse # noqa: F401
|
|
27
|
+
|
|
28
|
+
__all__ = ["parse", "lex", "emit", "File", "reference", "LanguageError", "Diagnostic"]
|
|
29
|
+
__version__ = "0.1.0"
|