2023-08-08 12:09:24 -07:00
|
|
|
# gfpy
|
|
|
|
|
|
|
|
This Python 3 code implements Galois field (finite field) arithmetic in pure Python,
|
|
|
|
leveraging Python's support for very long integers.
|
|
|
|
|
2024-12-11 19:13:44 -08:00
|
|
|
Because it's in pure Python, it's relatively slow --- don't use it for performance-critical
|
|
|
|
applications.
|
|
|
|
Instead, use it to _verify_ other implementations, or to understand how Galois field calculations work.
|
|
|
|
|
2023-08-08 12:09:24 -07:00
|
|
|
## Authors
|
|
|
|
|
|
|
|
- Ethan L. Miller (`coding@ethanmiller.com`)
|
|
|
|
|